compare between 2 moment objects after or before code example
Example 1: compare two dates using moment
moment('2010-10-20').isAfter('2010-01-01', 'year');
moment('2010-10-20').isAfter('2009-12-31', 'year');
Example 2: moment js between two dates
const start = moment().subtract(1, 'days');
const end = new Date();
const actual = moment().subtract(1, 'hours');
const test = moment(actual).isBetween(start, end);
console.log(test);
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);