Answers for "how to get the minutes between two times in moment js"

3

momentjs number of days between two dates

var given = moment("2018-03-10", "YYYY-MM-DD");
var current = moment().startOf('day');

//Difference in number of days
moment.duration(given.diff(current)).asDays();
Posted by: Guest on October-29-2020
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 "how to get the minutes between two times in moment js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language