Answers for "moment is date after"

1

get moment date without time

console.log( moment().format('YYYY-MM-DD HH:mm:ss') )

console.log( moment({h:0, m:0, s:0, ms:0}).format('YYYY-MM-DD HH:mm:ss') )
Posted by: Guest on September-06-2021
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