js怎么获取时间戳

在 JavaScript 中,可以使用 Date.now() 方法来获取当前时间戳。

例如:

const timestamp = Date.now();
console.log(timestamp);  // 输出当前时间戳

请注意,Date.now() 方法返回的是以毫秒为单位的时间戳。如果你希望以秒为单位获取时间戳,可以将返回值除以 1000。

例如:

const timestampInSeconds = Date.now() / 1000;
console.log(timestampInSeconds);  // 输出当前时间戳,以秒为单位

希望这些信息对你有所帮助。