Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function countdown(seconds, callback){
  2. var interval = setInterval(function () {
  3. if (seconds) {
  4. callback(seconds--);
  5. } else {
  6. clearInterval(interval);
  7. }
  8. }, 1000);
  9. }
  10.  
  11. countdown(5, function (s) {
  12. console.log('wowowowowow', s);
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement