Created
October 2, 2012 07:56
-
-
Save tsvetomir/3817178 to your computer and use it in GitHub Desktop.
Comparing JS dates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var d1 = new Date(), | |
d2 = new Date(d1.getTime()); | |
console.log("d1 === d2 ->", d1 === d2); // false | |
console.log("d1 == d2 ->", d1 == d2); // false | |
console.log("d1 < d2 ->", d1 < d2); // false | |
console.log("d1 > d2 ->", d1 > d2); // false | |
console.log("d1 <= d2 ->", d1 <= d2); // true | |
console.log("d1 >= d2 ->", d1 >= d2); // true | |
// George Bool is really pissed at this point | |
// Comparing getTime produces the correct result | |
console.log("d1.getTime() === d2.getTime() ->", d1.getTime() === d2.getTime()); // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment