moment milliseconds to date code example
Example 1: convert unix timestamp to date using moment
var dateString = moment.unix(value).format("MM/DD/YYYY");
Example 2: moment format date
moment().format(); // "2019-08-12T17:52:17-05:00" (ISO 8601, no fractional seconds)
moment().format("dddd, MMMM Do YYYY, h:mm:ss a"); // "Monday, August 12th 2019, 5:52:00 pm"
moment().format("ddd, hA"); // "Mon, 5PM"
Example 3: how to convert millisecond to second to date momentjs
var day = moment(1318781876406);