如何epoch在 Javascript 中获取当前时间?基本上是自 1970-01-01 午夜以来的毫秒数。
epoch
Date.now()以毫秒为单位返回一个 unix 时间戳。
const now = Date.now(); // Unix timestamp in milliseconds console.log( now );
在 ECMAScript5(IE Internet Explorer 8 和更早版本)之前,您需要构造一个 Date 对象,有多种方法可以从中获取以毫秒为单位的 unix 时间戳:
console.log( +new Date ); console.log( (new Date).getTime() ); console.log( (new Date).valueOf() );