JavaScript 获取当前时间 UTC 时间戳
要生成当前时间的 UTC 时间戳,可以使用 JavaScript 的 'Date' 对象和其相应的方法来实现。下面是一个示例代码:
// 创建一个表示当前时间的 Date 对象
var currentDate = new Date();
// 获取当前时间的 UTC 时间戳
var utcTimestamp = currentDate.getTime();
console.log(utcTimestamp);
运行以上代码,将会在控制台输出当前时间的 UTC 时间戳。
原文地址: https://www.cveoy.top/t/topic/pF3V 著作权归作者所有。请勿转载和采集!