Skip to content

Instantly share code, notes, and snippets.

@rickbacci
Created October 13, 2015 16:30
Show Gist options
  • Save rickbacci/369917bcfa3bc618abb5 to your computer and use it in GitHub Desktop.
Save rickbacci/369917bcfa3bc618abb5 to your computer and use it in GitHub Desktop.
function countdown(seconds, callback){
var interval = setInterval(function () {
if (seconds) {
callback(seconds--);
} else {
clearInterval(interval);
}
}, 1000);
}
countdown(5, function (s) {
console.log('wowowowowow', s);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment