Guest User

Untitled

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