Why does the equality operator return false in the first case?
var a = new Date(2010, 10, 10);
var b = new Date(2010, 10, 10);
alert(a == b); // <- returns false
alert(a.getTime() == b.getTime()); // returns true
Why?
|
Why does the equality operator return false in the first case?
Why? |
||||
|
|
|
Since dates are built-in objects, and not primitives, an equality check is done using the objects references. In this case, objects
By using If you want to do a comparison by value of two dates there is also a more obscure way to do this
In this case the unary |
|||||||||
|
|
http://stackoverflow.com/questions/492994/compare-2-dates-with-javascript dates.compare(a,b) The fact is that the comparison between the two objects does not work properly :/ |
||||
|
|
|
If you create two clocks, and set them both to the same time, you have two clocks. If you change the time in one clock, it will not change the time in the other clock. To compare or sort Dates, subtract one from the other. The valueof a Date object, used in a mathematical expression, is its timestamp. function compareDates(a,b){return a-b}; |
||||
|
|
|
I'm sorry guys, but this is idiotic... especially the bit about having two clocks. ==, by definition compares VALUES, whereas === compares references. Saying that == fails for non-primitives breaks the language's own syntactical structure. Of course, === would fail in the initial example, as the two dates are clearly two distinct pointers to two distinct memory-spaces, but, by the very definition of the JS spec, == should return TRUE for the comparison of two dates whose value is the same point in time. Yet another reason I hate JS... Sorry to rant, but this just kicked my butt for an hour. As an aside, you can use valueOf() to force the comparison of the values, and that will return true... it is redundant with == but it works. |
|||||||
|