Guest User

Untitled

a guest
Jan 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. (function(container){
  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. function countdown(){
  16. index = 10;
  17. iterate();
  18. }
  19. container['countdown'] = countdown;
  20. })(window)
Add Comment
Please, Sign In to add comment