Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function counter() {
  2. counterValue = 0;
  3. function increase() {
  4. counterValue += 1;
  5. console.log(counterValue);
  6. }
  7. return increase;
  8. }
  9.  
  10. var myCounter = counter();
  11. myCounter();
  12. myCounter();
  13. myCounter();
  14. myCounter();
  15. myCounter();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement