Answers for "get cueent date and time with moment"

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
-2

how to get current time using moment

var startDate = moment().subtract(1, 'days'); //one day before the current time
Posted by: Guest on February-22-2021

Code answers related to "get cueent date and time with moment"

Browse Popular Code Answers by Language