Answers for "moment difference between two dates but including the current date 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
0

Moment.js: Date between dates

You can use one of the moment plugin -> moment-range to deal with date range:

var startDate = new Date(2013, 1, 12)
  , endDate   = new Date(2013, 1, 15)
  , date  = new Date(2013, 2, 15)
  , range = moment().range(startDate, endDate);

range.contains(date); // false
Posted by: Guest on July-11-2021

Code answers related to "moment difference between two dates but including the current date js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language