Answers for "how to get time in minutes in moment"

1

momentjs date and time string add minutes

moment(date, "DD-MM-YYYY hh:mm:ss")
                        .add(10, 'minutes')
                        .format('DD/MM/YYYY hh:mm:ss');
Posted by: Guest on May-28-2021
3

moment hour minute

moment().format('HH:mm:ss')
Posted by: Guest on January-12-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 "how to get time in minutes in moment"

Browse Popular Code Answers by Language