Guest User

Untitled

a guest
Aug 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. JavaScript setInterval Limits?
  2. var counter = 0;
  3.  
  4. var looper = setInterval(function(){
  5. counter++;
  6. console.log("Counter is: " + counter);
  7.  
  8. if (counter >= 5)
  9. {
  10. clearInterval(looper);
  11. }
  12.  
  13. }, 1000);
Add Comment
Please, Sign In to add comment