gpt4 book ai didi

javascript - Date 对象中 2 月的 31 天

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:53:40 24 4
gpt4 key购买 nike

此代码应记录给定月份的所有天数:

var date = new Date(2012,2,1);
var thisMonth = date.getMonth();
while(date.getMonth()==thisMonth) { // 31 steps ???
console.log(date.getMonth(),date.getDate());
date.setDate(date.getDate()+1);
}

它适用于除二月以外的每个月。有什么想法吗?

最佳答案

请注意月份参数是0-indexed,因此您的代码是关于三月而不是二月

The doc:

month

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

关于javascript - Date 对象中 2 月的 31 天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16275959/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com