在Javascript中验证和比较日期

时间:2017-09-29 11:05:45

标签: javascript

需要比较以下格式的两个日期

a)2019年2月1日,第二天是

b)日期2 - 2/3/2017

我需要确保它们能够满足无效日期和Date1>日期2

function ValidateDates()
{

    var Date1 =" 01 Feb 2019";
    var Date2 ="2/3/2017";
    if(new Date(Date1) > new Date(Date2))
   {
     console.log("Date1 is greater");
   }

}  

我不是在寻找类似于时刻的脚本库。只想要一个JavaScript解决方案。

1 个答案:

答案 0 :(得分:0)

Date.parse(endDate) > Date.parse(startDate)