Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 429 Bytes

fromTimestamp.md

File metadata and controls

21 lines (14 loc) · 429 Bytes
标题 标签
fromTimestamp(时间戳转日期) date(日期)

从 Unix 时间戳创建一个 Date 对象。

  • 通过乘以 1000 将时间戳转换为毫秒。
  • 使用 Date 构造函数创建一个新的 Date 对象。
const fromTimestamp = timestamp => new Date(timestamp * 1000);

调用方式:

fromTimestamp(1602162242); // 2020-10-08T13:04:02.000Z

应用场景