Guest User

Untitled

a guest
Feb 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var counter = 0;
  2.  
  3. setInterval(function() {
  4. console.log(counter);
  5. counter = 0;
  6. }, 1000);
  7.  
  8. function loop()
  9. {
  10. counter++;
  11. process.nextTick(function() { loop(); });
  12. // setTimeout(loop, 0);
  13. }
  14. loop();
Add Comment
Please, Sign In to add comment