如何在JavaScript中获取时间戳?

我们需要在-中描述在JavaScript中访问当前时间戳的方式:

  • -秒

  • -毫秒

JavaScript自时期起以毫秒为单位运行,而大多数其他语言以秒为单位运行。

这将为您提供Unix时间戳(以秒为单位)-

const date = new Date();
const unix = Math.round(+date / 1000);
console.log(unix);

这将为您提供自纪元以来的毫秒数(不是Unix时间戳)-

const date = new Date();
const milliseconds = date.getTime();
console.log(milliseconds);