Advertisement
dhshin

practice_13

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