Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var timerId;
  2.  
  3. stopTimer = function() {
  4.     if(timerId)
  5.         clearInterval(timerId);
  6. }
  7.  
  8. startTimer = function() {
  9.     timerId = setInterval(function() {
  10.         //Do stuff
  11.         console.log('stuff');
  12.     }, 1000);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement