Guest User

Untitled

a guest
May 22nd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function countdown (num) {
  2.  
  3. for (var i = 0; i <= num; num--) {
  4. alert(num);
  5. }
  6.  
  7. }
  8.  
  9. countdown(5);
Add Comment
Please, Sign In to add comment