This question already has an answer here:
I am using a JavaScript Date
class & trying to get the current date using getDate()
method. But obviously it is loading system date & time. I am running the code from India but I want to get the date & time of UK using the same method. How can I do that ?
This is Correct way to get ##
You could use
Intl.DateTimeFormat
.Alternatively, if you're formatting just once instead of bulk use
Date.prototype.toLocaleDateString()
.Unfortunately browsers are not required to understand timezones other than UTC, so
try
these blocks and figure out an alternative in case it fails, for example fetch the timezone offset from a server.short answer from client-side: NO, you have to get it from the server side.
If it's really important that you have the correct date and time; it's best to have a service on your server (which you of course have running in UTC) that returns the time. You can then create a new Date on the client and compare the values and if necessary adjust all dates with the offset from the server time.
Why do this? I've had bug reports that was hard to reproduce because I could not find the error messages in the server log, until I noticed that the bug report was mailed two days after I'd received it. You can probably trust the browser to correctly handle time-zone conversion when being sent a UTC timestamp, but you obviously cannot trust the users to have their system clock correctly set. (If the users have their timezone incorrectly set too, there is not really any solution; other than printing the current server time in "local" time)
You can use
getUTCDate()
and the relatedgetUTC...()
methods to access a time based off UTC time, and then convert.If you wish, you can use
valueOf()
, which returns the number of seconds, in UTC, since the Unix epoch, and work with that, but it's likely going to be much more involved.The best way to do this is to use getLocaleString, like this:
Create a date object:
If you are in Berlin, this should convert to this string:
Get the hours in Athens:
Get the hours in Shanghai: