获取当前时间戳(秒):
const timestampInSeconds = Math.floor(Date.now() / 1000);
获取当前时间戳(毫秒):
const timestampInMilliseconds = Date.now();
const timestamp = 1626732186000; // 示例时间戳 const date = new Date(timestamp);
将日期对象转换为时间戳(秒):
const date = new Date(); const timestampInSeconds = Math.floor(date.getTime() / 1000);
将日期对象转换为时间戳(毫秒):
const date = new Date(); const timestampInMilliseconds = date.getTime();
注意,在处理时间戳时需要注意单位(秒或毫秒)的一致性。如果你得到一个时间戳,要确保正确地使用相应的单位进行处理和转换。
获取时间戳:要获取当前的时间戳,你可以使用 JavaScript 的 Date
对象和 getTime()
方法。
const timestamp = Date.now(); // 获取当前时间戳,单位:毫秒
上述代码将返回一个表示当前时间戳的数值。请注意,时间戳是从特定时间点(通常是 1970 年 1 月 1 日)至今的毫秒数。