moment get unix 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: momentjs utcoffset
moment().utcOffset() // will output 60 (for example)
Example 4: moment get timestamp
var CurrentDate = moment().valueOf();