moment date to timestamp code example
Example 1: convert unix timestamp to date using moment
var dateString = moment.unix(value).format("MM/DD/YYYY");
Example 2: moment get timestamp
moment().unix() // you will get a unix timestamp
moment().valueOf() // you will get a full timestamp
Example 3: moment get timestamp
var CurrentDate = moment().valueOf();