Answers for "duration months into days 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 add 6 months

moment().add(6, 'M');
Posted by: Guest on May-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language