充分理解 闭包

关于闭包的文章
https://medium.freecodecamp.org/whats-a-javascript-closure-in-plain-english-please-6a1fc1d2ff1c

mozilla
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures

充分理解 闭包_第1张图片
TIM截图20180124133823.png

我的一个解释

let sum = 0;

const f = function (){
    let f_a = 100;
    setInterval(()=>{
        f_a++;
        sum++;
    },3000);
}

当多次执行 f() 时,每个 f 都有自己的f_a, 所有 f 使用同一个sum。

function定义时生成closure, closure 限定了function能访问的scope。
每次执行function时,function 自己的scope中的值都是新的。
当scope中的值被引用,它就继续存在。

你可能感兴趣的:(充分理解 闭包)