Skip to content

Instantly share code, notes, and snippets.

@davidblurton
Created December 12, 2016 20:46
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 davidblurton/ba08bb70ab6aeef93a97d6f6c8b16a6f to your computer and use it in GitHub Desktop.
Save davidblurton/ba08bb70ab6aeef93a97d6f6c8b16a6f to your computer and use it in GitHub Desktop.
function countdownToChristmas(date) {
const daysLeft = 24 - date
if (daysLeft > 0) {
return `${daysLeft} days till Christmas!`
}
}
const date = new Date().getDate()
countdownToChristmas(date).toUpperCase()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment