Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var timeleft = 6;
  2. var gameTimer = setInterval(function(){
  3. timeleft--;
  4. afficherChaine("Le jeu va commencer dans " + timeleft + " secondes !"); //Just prints something at the screen for the user
  5. console.log("First");
  6. if(timeleft <= 0){
  7. clearInterval(gameTimer);
  8. console.log("Second");
  9. jouer();
  10. }
  11. },1000);
  12.  
  13. First
  14. Second
  15.  
  16. First
  17. Second
  18. First
  19. Second
  20. First
  21. Second
  22. First
  23. Second
  24. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement