vote up 5 vote down star

I'm in javascript, running this in the console

d = new Date(); 			
d.setMonth(1);
d.setFullYear(2009);
d.setDate(15);  								
d.toString();

outputs this:

"Sun Mar 15 2009 18:05:46 GMT-0400 (EDT)"

Why would this be happening? It seems like a browser bug.

flag

Beware the ides of March. – eyelidlessness Oct 30 '08 at 23:05

4 Answers

vote up 23 vote down check

It's probably best to construct a Date object in one step to avoid the Date object being in an ambiguous or invalid state:

d = new Date(2009, 1, 15);
link|flag
vote up 1 vote down
d = new Date();
d.setDate(15);                    
d.setMonth(1);
d.setFullYear(2009);                                                                 
d.toString();

This works.

link|flag
1  
In your original question, setting the Month first was causing a problem because today is the 30th and Feb 30th doesn't exist so Javascript adjusted the date for you. Think about it, if you had written this code a couple of days ago, it probably would have worked fine. Lucky you worked on it today! – BoltBait Oct 30 '08 at 22:19
why not do it in one step as Jason W mentioned. – Omar Kooheji Oct 30 '08 at 23:18
Doing it in one step is what I ended up doing, I just posted this as soon as I figured out what the problem was. – Issac Kelly Nov 25 '08 at 3:27
vote up 25 vote down

That's because when you initialize a new Date, it comes with today's date, so today is Oct 30 2008, then you set the month to February, so there is no February 30, so set first the day, then the month, and then the year:

d = new Date();
d.setDate(15);                    
d.setMonth(1);
d.setFullYear(2009);

But as @Jason W, says it's better to use the Date constructor:

new Date(year, month, date [, hour, minute, second, millisecond ]);
link|flag
What if it's currently February and you call d.setDate(30)? – Greg Hewgill Oct 30 '08 at 22:28
Everything's fine as long as it's a double-plus leap year. – Michael Burr Oct 30 '08 at 22:32
If the year is not leap, so February has 28 days, should give you March 02, if the year is leap, March 01 – CMS Oct 30 '08 at 22:32
CMS: I think you're missing the point. If d.setDate(30) were to set the date to March 2 (or 1, whatever), and then d.setMonth(0) for January, then you'd end up with January 2 and not January 30 as intended. – Greg Hewgill Oct 30 '08 at 22:41
Yes I noticed, I think it's better to initialize the date using the constructor as Jason says, new Date(year, month, day [, hour, minute, second, millisecond]) – CMS Oct 30 '08 at 23:02
show 1 more comment
vote up 0 vote down

After a bunch of testing in FF3 on XP with Firebug, here are the things I can tell you

  • Calling Date.setDate() after calling Date.setMonth() will generate this odd behavior.
  • Date.setMonth() forces the timezone to be CST (or, some non DST-aware zone)
  • Date.setDate() forces the timezone to be CDT (or, some DST-aware zone)

So, there's definitely something wonky going on with setMonth() and setDate() in respect to the timezone.

The only solution I can offer is this: Set the date before you set the month.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.