Skip to content

Instantly share code, notes, and snippets.

@Fallenstedt
Created October 14, 2016 18:28
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 Fallenstedt/78cb9513cc91e74c8946d29a3e0bc613 to your computer and use it in GitHub Desktop.
Save Fallenstedt/78cb9513cc91e74c8946d29a3e0bc613 to your computer and use it in GitHub Desktop.
/* Check if it is april fools day */
var aprilFools = {
month: 3,
date: 1
}
function isItAprilFoolDay() {
var now = new Date();
return (now.getMonth() == aprilFools.month && now.getDate() == aprilFools.date);
}
if(isItAprilFoolDay()){
// fuck with people
} else {
// there is less fake stuff today
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment