gpt4 book ai didi

javascript - 比较从函数生成的日期对象和

转载 作者:行者123 更新时间:2023-11-28 13:25:31 24 4
gpt4 key购买 nike

我正在尝试比较两个日期:

var date = new Date('Mon May 11 2000 00:00:00 GMT+0200 (CEST)');

var processedDate = new Date(new Date(date.setHours(23,59,59,999)).setDate(date.getDate() -1));

var otherDate = new Date('Wed May 10 2000 23:59:59:999 GMT+0200 (CEST)');

console.logging 日期给出完全相同的输出,但是,以下语句未解析为 true:

if (otherDate === processedDate) {
console.log('equal dates');
}

请参阅以下 fiddle :

https://jsfiddle.net/mgvx613d/

最佳答案

你不能比较对象。试试这个:

if (otherDate.toString() === processedDate.toString()) {
console.log('equal dates');
}

关于javascript - 比较从函数生成的日期对象和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29563865/

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