Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var next = function() {
  2. console.log("hello " + counter);
  3. if (counter != 0) {
  4. setTimeout("next();", 50); return;
  5. }
  6. //code here
  7. }
  8. next();
Add Comment
Please, Sign In to add comment