Skip to content

Instantly share code, notes, and snippets.

@speier
Created June 18, 2019 07:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save speier/c470e684cc9d8849223310ddb394c5ea to your computer and use it in GitHub Desktop.
Save speier/c470e684cc9d8849223310ddb394c5ea to your computer and use it in GitHub Desktop.
JS countdown
function countdown(start) {
return [...Array(start + 1).keys()].reverse()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment