Skip to content

Instantly share code, notes, and snippets.

@HichemBenChaaben
Created August 2, 2018 19:41
Show Gist options
  • Save HichemBenChaaben/a3982b91cbf0210bbebccd7c6debd9fe to your computer and use it in GitHub Desktop.
Save HichemBenChaaben/a3982b91cbf0210bbebccd7c6debd9fe to your computer and use it in GitHub Desktop.
const countDown = (n) => {
console.log(n);
return (n > 0) ? countDown(n - 1) : n;
}
countDown(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment