vote up 1 vote down star

I'm building today's date using a onclick event in JavaScript. When i set the .value property with:

var now = new Date;
...Value = now.getMonth() + "/" + now.getDate() + "/" + now.getYear();

this produces: 9/9/2009 I am expecting: 10/9/2009

This happens in both IE and Firefox. The system time on my computer is correct. Any ideas?

flag

3 Answers

vote up 9 vote down check

It's zero-based. January is month 0.

http://www.w3schools.com/jsref/jsref%5FgetMonth.asp

link|flag
Thanks, this was driving me nuts. – Ioxp Oct 9 at 20:28
vote up 1 vote down

The enumeration is 0 based.

0 = January
1 = Feb... etc

link|flag
vote up 4 vote down

getMonth() starts at 0.

link|flag

Your Answer

Get an OpenID
or

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