javascript is creating date wrong month

后端 未结 2 1235
花落未央
花落未央 2020-11-22 08:54

using Mozilla Firefox Firebug:

var myDate = new Date(2012, 9, 23, 0,0,0,0);
myDate;

Date {Tue Oct 23 2012 00:00:00 GMT-0400 (Eastern Dayli

相关标签:
2条回答
  • 2020-11-22 09:28

    In the javascript world months begin with zero! kind of weird to me. Anyhow, 9 is NOT September, but rather 9 is October.

    0 讨论(0)
  • 2020-11-22 09:35

    No, javascript's Date months start with 0, so 9 is a 10th month and it is October

    Reference:

    new Date(year, month [, day, hour, minute, second, millisecond]);

    [...]

    month Integer value representing the month, beginning with 0 for January to 11 for December.

    0 讨论(0)
提交回复
热议问题