Guest User

Untitled

a guest
Jul 1st, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var timer = 5;
  2. var timerId = setTimeout(function tick() {
  3. console.log( "тик "+ timer);
  4. timer-- ;
  5. if(timer != 0){
  6. timerId = setTimeout(tick, timer*1000);
  7. }
  8. else
  9. console.log('stop');
  10. }, timer*1000);
Add Comment
Please, Sign In to add comment