📜  Moment.js moment().unix()函数(1)

📅  最后修改于: 2023-12-03 15:32:55.994000             🧑  作者: Mango

使用 Moment.js 的 moment().unix() 函数

简介

Moment.js 是一个流行的 JavaScript 日期库,它允许开发者轻松处理、格式化和转换日期。

其中,moment().unix() 函数用于获取当前日期的 Unix 时间戳(即自 1970 年 1 月 1 日 00:00:00 UTC 起的秒数)。

语法

moment().unix()

参数

该函数没有参数。

返回值

当前日期的 Unix 时间戳。

使用示例
const unixTimestamp = moment().unix();
console.log(unixTimestamp);

输出:

1616688485
注意事项
  • Unix 时间戳是基于 UTC 时间的,因此不受时区的影响。
  • 注意 moment() 函数返回的是本地时间,因此与 UTC 时间可能存在偏差。如果需要获取 UTC 时间的 Unix 时间戳,应使用 moment.utc().unix() 函数。