WindFell

closure

Jun 24th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let func = (function(){
  2.     let a = 1;
  3.     return function f() {
  4.         console.log(a++);
  5.     }
  6. })()
  7.  
  8. func()
  9. func()
  10. func()
  11. func()
Advertisement
Add Comment
Please, Sign In to add comment