首先,JavaScript没有像Python那样的基本日期比较吗?
在我的Node.js脚本中,我有以下几行:
console.log(Date(2012,11,10) < Date(2012,9)) console.log(Date(2012,10) > Date(2012,9))
但是,这两行都返回false.
似乎有很多关于“JavaScript中的日期比较”的问题.
然而,对于几乎所有人来说,有人用他们的自制解决方案来回应比较日期,其中一些很长和/或“hacky”.
是否真的没有固有或惯用的方式来简单比较JavaScript中的日期.
任何Node库都支持它吗?
解决方法
您需要使用new关键字
console.log(new Date(2012,10) < new Date(2012,9)) console.log(new Date(2012,10) > new Date(2012,9))
正如Elias Van Ootegem所指出的,如果省略new关键字,则返回字符串是标准:
When Date is called as a function rather than as a constructor,it returns a String representing the current time (UTC).
NOTE
The function callDate(…)
is not equivalent to the object creation expressionnew Date(…)
with the same arguments.