I'm trying to compare 2 dates using javascript. 1 at the end of the month and 1 at the beginning. I need to compare these 2 dates in seconds so I'm using the Date.UTC javascript function.
Here's the code:
var d = Date.UTC(2010,5,31,23,59,59); document.write(d); var d2 = Date.UTC(2010,6,1,12,20,11); document.write(d2);
The output for is:
1278028799000 1277986811000
This is telling me that 1/6/2010 is less than 5/31/2010 in milliseconds.
How is that possible? What am I doing wrong?
Thanks for your help.