function a(){
var _aee = []; //私有数组 在a函数外面不能改变_aee数组
return function(i){
if(_aee.indexOf(i) != -1){//有了
console.log(false)
}else{
_aee.push(i)
console.log(true)
}
}
}
var b = a();
b(10); //true
b(10); //false
b(10); //false
b(20); //true
b(20); //false
第三章第五节
最新推荐文章于 2020-10-15 17:06:42 发布