Guest User

Untitled

a guest
Jul 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 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. log();
  11. if(index > 1) setTimeout(iterate, 1000);
  12. index--;
  13. }
  14.  
  15. return function() {
  16. index = 10;
  17. iterate();
  18. }
  19. }();
  20.  
  21. countdown();
Add Comment
Please, Sign In to add comment