Skip to content

Instantly share code, notes, and snippets.

@Will-Sommers
Created September 28, 2013 16:49
Show Gist options
  • Save Will-Sommers/6743972 to your computer and use it in GitHub Desktop.
Save Will-Sommers/6743972 to your computer and use it in GitHub Desktop.
countdown
function countdown(seconds) {
console.log(seconds);
window.setTimeout(function(){
if (seconds !== 0) {
countdown(seconds - 1);
}
}, 1000);
}
countdown(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment