gpt4 book ai didi

javascript - 如何将 UTC 时间转换为 EDT 时间

转载 作者:太空宇宙 更新时间:2023-11-04 03:01:08 25 4
gpt4 key购买 nike

如何通过传递时间作为输入来将 UTC 时间转换为 EDT 时间;

例如:如果我通过 14:00 作为输入,我将得到 10:00

有人可以推荐任何更有帮助的 Node JS 库或工作代码片段吗?

最佳答案

我强烈推荐moment.jstimezone extension .

文档中的示例:

var a = moment.tz("2013-11-18 11:55", "Asia/Taipei");
var b = moment.tz("2013-11-18 11:55", "America/Toronto");

a.format(); // 2013-11-18T11:55:00+08:00
b.format(); // 2013-11-18T11:55:00-05:00

a.utc().format(); // 2013-11-18T03:55Z
b.utc().format(); // 2013-11-18T16:55Z

关于javascript - 如何将 UTC 时间转换为 EDT 时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56541700/

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