How to get the current date time of other countries in JavaScript
In this article, we will show you how to get the current date time of other countries in JavaScript. Here we will give you an example to get Dubai’s current DateTime using JavaScript.
Checkout more articles on JavaScript
Code snippet to get the current datetime of other country
1 2 3 4 5 6 7 8 9 10 | 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: 11/22/2021, 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..!! 🙂