Skip to content

Instantly share code, notes, and snippets.

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