Skip to content

Datetime


content


Resource


Timestamp

new Date().getTime().toString()
// e.g. 1655194529501

With moment.js

Output format

moment().format('MMMM Do YYYY, h:mm:ss a'); // June 15th 2022, 3:03:20 pm
moment().format('dddd');                    // Wednesday
moment().format("MMM Do YY");               // Jun 15th 22
moment().format('YYYY [escaped] YYYY');     // 2022 escaped 2022
moment().format();                          // 2022-06-15T15:03:28+09:00

Comments