Answers for "check a date is past date js with moment"

4

moment check valid date

var date = moment("2016-10-19");
var check = date.isValid();
console.log(check);
Posted by: Guest on March-03-2020
0

moment js - to find if dates are same by day

var iscurrentDate = startTime.isSame(new Date(), "day");
if(iscurrentDate) {

}
Posted by: Guest on May-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language