Guest User

Untitled

a guest
May 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function myLoop (i) {          
  2.    setTimeout(function () {  
  3.       console.log(i);                      
  4.       if (--i) myLoop(i);      
  5.    }, 3000)
  6. })(10);
Add Comment
Please, Sign In to add comment