Get different country time in JavaScript
📅August 22, 2022
In this article, we will show you how to get different country time in JavaScript. Here we will give you an example to get Dubai’s current DateTime using JavaScript.
const d = new Date();
const localTime = d.getTime();
const localOffset = d.getTimezoneOffset() * 60000;
const utc = localTime + localOffset;
const offset = 4; // UTC of Dubai is +04.00
const dubai = utc + (3600000 * offset);
const dubaiTimeNow = new Date(dubai).toLocaleString();
// Output: 08/22/2022, 11:07:27 AM
In the above example, the 4
is the Dubai’s time zone offset. You can also achieve the same things via Moment.js.
I hope you find this article helpful.
Thank you for reading. Happy Coding..!!