我正在尝试获取特定时区当天的纪元时间戳。
例如,我想知道太平洋标准时间今天早上 6 点的纪元时间戳
我非常接近,但不确定如何调整时区:
const getTimestampFor10amPST = () => {
const today = new Date()
const year = today.getFullYear()
const month = today.getMonth()
const day = today.getDate()
const timestampFor10amPST = new Date(year, month, day, 10, 0, 0, 0);
return timestampFor10amPST.getTime()
}
如何获取预期时区的时间戳?
元芳怎么了
肥皂起泡泡
相关分类