Set global time zone

Fabrizio Fortino picture Fabrizio Fortino · Jul 17, 2013 · Viewed 45.3k times · Source

I am using Moment.js to handle dates in my web application. The server returns all the dates in milliseconds UTC. Now, I have to display the dates applying a specific timezone (based on the user settings).

Is there any way to set the timezone globally instead of changing all the calls to momentjs to handle it?

Answer

Der Hochstapler picture Der Hochstapler · Mar 24, 2015

You can set the default timezone in Moment by using:

moment.tz.setDefault(String);

For example

moment.tz.setDefault("America/New_York");