其他分享
首页 > 其他分享> > 实际开发中闭包的应用

实际开发中闭包的应用

作者:互联网

闭包的实际应用,主要是用来封装变量。即把变量隐藏起来,不让外面拿到和修改。

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) // true
firstLoad(10) // false
firstLoad(20) // true

标签:firstLoad,return,中闭,list,开发,应用,false,true,id
来源: https://www.cnblogs.com/Ironman725/p/11275630.html