Skip to content

Instantly share code, notes, and snippets.

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