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 timezo
npm install moment-timezone
var moment = require('moment-timezone');
and use this object
instead of usual moment
.moment.tz.setDefault(String);
where String is a time zone
identifier.For example:
var moment = require('moment-timezone');
moment.tz.setDefault("America/New_York");
Docs: https://momentjs.com/timezone/docs/