moment js node js days difference code example
Example 1: momentjs number of days between two dates
var given = moment("2018-03-10", "YYYY-MM-DD");
var current = moment().startOf('day');
moment.duration(given.diff(current)).asDays();
Example 2: moment js date diff
var now = "04/09/2013 15:00:00";
var then = "02/09/2013 14:20:30";
var ms = moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"));
var d = moment.duration(ms);
var s = d.format("hh:mm:ss");
Example 3: moment get day
var check = moment(n.entry.date_entered, 'YYYY/MM/DD');
var month = check.format('M');
var day = check.format('D');
var year = check.format('YYYY');