Advertisement
Guest User

PasteToBin (Wed Jun 07 2017)

a guest
Jun 7th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
4CS 0.34 KB | None | 0 0
  1.               function checkBoom() {
  2.  
  3.             if (timeSet < current) {
  4.                 clearInterval(intervalId);
  5.                 boom();
  6.                 intervalId = null;
  7.             }
  8.  
  9.         }
  10.         if (intervalId) {
  11.             clearInterval(intervalId);
  12.         }
  13.         intervalId = setInterval(checkBoom, 1000);
  14.  
  15.  
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement