gpt4 book ai didi

javascript - 使用javascript获取上个月的第一个日期

转载 作者:行者123 更新时间:2023-11-29 18:40:40 25 4
gpt4 key购买 nike

<分区>

以下代码适用于大多数日子。但是,我在 2019 年 7 月 31 日遇到了问题。

var augDate = new Date('2019-08-19T00:00:00');
var julyDate = new Date('2019-07-31T00:00:00');

augDate.setMonth(augDate.getMonth() -1);
console.log(augDate.getMonth()); //retuns 6, good
console.log(julyDate.getMonth()); //returns 6
julyDate.setMonth(julyDate.getMonth() - 1); //try to get it to be 5, but it's still
console.log(julyDate.getMonth()); //still returns 6. I'm expecting 5

console.log(augDate);
console.log(julyDate);

出于某种原因,对于 7 月 31 日,getMonth() - 1 不会更改日期。

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