[JavaScript] 閉包(closure)簡單例子

是說,對閉包還是不解,所以直接把簡單的例子紀錄下來...

重點是記憶延續,從例子可以看到 count 不會因重新呼叫而被重新宣告

  1. const counter = () => {
  2. let count = 0;
  3.  
  4. return () => {
  5. return count++;
  6. }
  7. };
  8.  
  9. const count1 = counter();
  10.  
  11. console.log(count1() // 0
  12. console.log(count1() // 1
  13. console.log(count1() // 2


留言

這個網誌中的熱門文章

[面試] 日月光 設備工程師

[日文] Google日文輸入法 簡單安裝說明

[Windows] 還我 win7 相片檢視器!!