Reputation: 4599
I want to convert IST time zone to GMT format using momentjs. The date value which is coming from database is in the following way,
2018-07-17T10:52:39.785
Upvotes: 0
Views: 1530
Reputation: 259
Just do this:
moment("2018-07-17T10:52:39.785").utc().format()
See utc()
docs.
Upvotes: 1