gpt4 book ai didi

javascript - 比较两个时间戳每分钟的差异?

转载 作者:行者123 更新时间:2023-11-29 22:38:34 25 4
gpt4 key购买 nike

我想做以下事情

timestamp1 = Time.now?
timestamp2 = lastSave --- My func would be setting this

如果(比较(时间戳 1 到时间戳 2)> 5 秒

关于如何使用 JS 执行此操作的任何想法?谢谢

最佳答案

您在寻找时间吗?

您可以在 Firefox 的 Firebug 控制台中尝试:

timestamp1 = new Date();

for (var i = 0; i < 10; i++) console.log(timestamp1);

timestamp2 = new Date();

console.log(timestamp2 - timestamp1);
console.log((timestamp2 - timestamp1) / 1000);

最后一位是秒数。

关于javascript - 比较两个时间戳每分钟的差异?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4039788/

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