Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var firstf = function () {
  2. var counter = 0;
  3. return function () {
  4. console.log("counter = " + counter);
  5. return counter += 1;
  6. }
  7. };
  8. var add = firstf();
  9. add();//output 0
  10. add();//output 1
  11. add();//output 2
  12. firstf()();//output 0
  13. firstf()();//output 0
  14. firstf()();//output 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement