我想知道为什么构造函数的日期和打印日期不同。它显示为一个月晚了。
答案 0 :(得分:8)
月份在许多语言中都是零基础。这意味着
0 -> January
1 -> February
2 -> March
...
<强>月强>
表示月份的整数值,从1月的0开始到12月的11。
来源:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
答案 1 :(得分:3)
参见参考:Date object
month
Integer value representing the month, beginning with 0 for January to 11 for December.