Guest User

Untitled

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