You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function outerFunc(){
var count = 2;
var getCount = function(val){
count = val;
console.log(count)
}
return getCount;
}
var test = outerFunc();
test(2);
test(4);
‘闭包’这个知识点,我们要从何说起
The text was updated successfully, but these errors were encountered: