Skip to content

JS 获取时间戳

Published: at 03:22 PMSuggest Changes

问题

JS 获取时间戳

解决

方法一:(只精确到秒,把毫秒改成 000 显示)

const timestamp = Date.parse(new Date());

方法二:(精确到毫秒)

const timestamp = new Date().valueOf();

方法三:(精确到毫秒)

const timestamp = new Date().getTime();

Previous Post
JavaScript 数组反转性能比较
Next Post
Linux 后台运行命令