Guest User

Untitled

a guest
Jul 20th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var countdown = function() {
  2.  
  3. var index;
  4.  
  5. function log() {
  6. console.log(index);
  7. }
  8.  
  9. function iterate() {
  10. // gah getting an undefined ??
  11. log();
  12. if(index > 1) setTimeout(iterate, 1000);
  13. index--;
  14. }
  15.  
  16. return function() {
  17. index = 10;
  18. iterate();
  19. }()
  20. };
  21.  
  22. countdown();
Add Comment
Please, Sign In to add comment