使用 JavaScript 中的 Date 对象显示亚洲和美洲的日期时间
为此,您可以使用 JavaScript 中的 timeZone,即亚洲和美洲特定的时区。
对于亚洲时区
var todayDateTime = new Date().toLocaleString("en-US", {timeZone: "Asia/Kolkata"});
对于美洲时区
var americaDateTime = new Date().toLocaleString("en-US", {timeZone: "America/New_York"});
示例
var todayDateTime = new Date().toLocaleString("en-US", {timeZone: "Asia/Kolkata"}); todayDateTime = new Date(todayDateTime); console.log("The Asia Date time is="); console.log(todayDateTime) var americaDateTime = new Date().toLocaleString("en-US", {timeZone: "America/New_York"}); americaDateTime = new Date(americaDateTime); console.log("The America Date time is="); console.log(americaDateTime);
要运行以上程序,您需要使用以下命令 -
node fileName.js.
此处,我的文件名是 demo193.js。
输出
这会产生以下输出 -
PS C:\Users\Amit\javascript-code> node demo193.js The Asia Date time is= 2020-08-08T08:44:50.000Z The America Date time is= 2020-08-07T23:14:50.000Z
广告