Skip to content

Instantly share code, notes, and snippets.

@jgv
Created December 6, 2010 22:22
Show Gist options
  • Save jgv/731093 to your computer and use it in GitHub Desktop.
Save jgv/731093 to your computer and use it in GitHub Desktop.
js test for birthday party. pls fork.
partyTime = new Date(2010,12,11,23,30,0);
yrTime = new Date();
/// test for party
var checkForParty = function (yrTime, partyTime){
if (yrTime < partyTime) {
return false;
} else {
return true;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment