vishnu
vishnu

Reputation: 4599

convert IST time zone to GMT using momentjs

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

Answers (1)

Sriman Pathy
Sriman Pathy

Reputation: 259

Just do this:

moment("2018-07-17T10:52:39.785").utc().format()

See utc() docs.

Upvotes: 1

Related Questions