Skip to content

Instantly share code, notes, and snippets.

@farmerbradllc
Created December 24, 2014 18:47
Show Gist options
  • Select an option

  • Save farmerbradllc/437610a9694e81d172de to your computer and use it in GitHub Desktop.

Select an option

Save farmerbradllc/437610a9694e81d172de to your computer and use it in GitHub Desktop.
Christmas Greeting
var message = "Merry Christmas",
today= new Date(),
year = today.getFullYear();
today = today.toLocaleDateString();
if (today == "12/24/"+ year){
console.log(message + " Eve");
}
if (today == "12/25/"+ year){
console.log(message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment