moment js timestamp to date code example
Example 1: format a date moment
moment(testDate).format('MM/DD/YYYY');
Example 2: moment date add
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
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');