gpt4 book ai didi

javascript - 比较日期,这给了我错误的结果

转载 作者:太空宇宙 更新时间:2023-11-04 03:06:26 24 4
gpt4 key购买 nike

我需要比较 startDate 和 endDate,如果 startDate>endDate 那么我需要将 endDate 月份的开始日期作为 startDate 假设我的startDate 是 "startDate": "2016-05-30T00:00:00.000Z" endDate 是 "endDate": "2016-06-05T00:00:00.000Z" 然后比较时需要得到 true 但我得到 false

代码:

 var c=(new Date(nestedObj.startDate)).getDate();
console.log("startdate"+" "+c);
var d=(new Date(nestedObj.endDate)).getDate();
console.log("endtdate"+" "+d);
console.log(c>d);

正如您在下面的代码片段中看到的

enter image description here

如有任何帮助,我们将不胜感激。

最佳答案

试试这个

var c = new Date(nestedObj.startDate)
console.log("startdate"+" "+c);
var d=new Date(nestedObj.endDate);
console.log("endtdate"+" "+d);
console.log(c>d);

关于javascript - 比较日期,这给了我错误的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39728518/

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