momentjs from code example
Example 1: moment format
moment().format('MMMM Do YYYY, h:mm:ss a');
moment().format('dddd');
moment().format("MMM Do YY");
moment().format('YYYY [escaped] YYYY');
moment().format();
Example 2: moment js from now
moment(date).fromNow();
Example 3: timestamp convert moment vue
var day = moment.unix(1318781876);
var day = moment(1318781876406);
console.log(day.format('dddd MMMM Do YYYY, h:mm:ss a'));
Example 4: moment to javascript date
let now = moment()
let now = now.toDate()