• Post category:JavaScript
  • Reading time:1 mins read

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.

Code snippet to get the current datetime of other country

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..!!

Leave a Reply