Answers for "how to calculate number of working days with moment.js"

1

moment calculate duration

moment
 .duration(moment(endTime, 'YYYY/MM/DD HH:mm')
 .diff(moment(startTime, 'YYYY/MM/DD HH:mm'))
 ).asHours()
Posted by: Guest on February-26-2021
5

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

Code answers related to "how to calculate number of working days with moment.js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language