moment now timestamp code example
Example 1: moment get timestamp
moment().unix() // you will get a unix timestamp
moment().valueOf() // you will get a full timestamp
Example 2: format a date moment
moment(testDate).format('MM/DD/YYYY');
Example 3: moment get timestamp
var CurrentDate = moment().valueOf();