闭包的实际应用,主要是用来封装变量。即把变量隐藏起来,不让外面拿到和修改。
function isFirstLoad() { var _list = [] return function (id) { if (_list.indexOf(id) >= 0) { return false } else { _list.push(id) return true } }}// 使用var firstLoad = isFirstLoad()firstLoad(10) // truefirstLoad(10) // falsefirstLoad(20) // true