gpt4 book ai didi

javascript - 如何从明天的nodejs获取unix时间戳

转载 作者:搜寻专家 更新时间:2023-10-31 23:56:37 26 4
gpt4 key购买 nike

我想从明天开始获取 Unix 时间戳(以秒为单位的时间)。

我已经尝试了以下但没有成功:

var d = new Date();
d.setDate(d.getDay() - 1);
d.setHours(0, 0, 0);
d.setMilliseconds(0);
console.log(d/1000|0)

我该如何解决上述问题?

最佳答案

刚刚修改了你的代码,它工作正常

var d = new Date();
d.setDate(d.getDate() + 1);
d.setHours(0, 0, 0);
d.setMilliseconds(0);
console.log(d)
>> Sun Apr 21 2019 00:00:00 GMT+0530 (India Standard Time)

希望这对你有用

关于javascript - 如何从明天的nodejs获取unix时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55767425/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com