Skip to content

Instantly share code, notes, and snippets.

@George-Hudson
Created December 15, 2015 16:42
Show Gist options
  • Save George-Hudson/c6b15d46e6949776b6fb to your computer and use it in GitHub Desktop.
Save George-Hudson/c6b15d46e6949776b6fb to your computer and use it in GitHub Desktop.
JS recursive countdown
function countdown(n) {
if (n <= 0) {
console.log(0);
} else {
console.log(n);
countdown(n - 1);
}
}
countdown(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment