Comparing date part only without comparing time in JavaScript

后端 未结 22 1847
春和景丽
春和景丽 2020-11-22 10:59

What is wrong with the code below?

Maybe it would be simpler to just compare date and not time. I am not sure how to do this either, and I searched, but I couldn\'t

22条回答
  •  佛祖请我去吃肉
    2020-11-22 11:50

    Comparing with setHours() will be a solution. Sample:

    var d1 = new Date();
    var d2 = new Date("2019-2-23");
    if(d1.setHours(0,0,0,0) == d2.setHours(0,0,0,0)){
        console.log(true)
    }else{
        console.log(false)
    }
    

提交回复
热议问题