Answers for "different to time by moment js"

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
1

moment js difference between start and end in hours

var duration = moment.duration(end.diff(startTime));
var hours = duration.asHours();
Posted by: Guest on July-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language