使用Moment.js将IST时区转换为GMT

时间:2018-08-09 07:18:26

标签: javascript momentjs

我想使用momentjs将IST时区转换为GMT格式。来自数据库的日期值采用以下方式,

2018-07-17T10:52:39.785

1 个答案:

答案 0 :(得分:0)

只需执行以下操作:

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

请参阅utc()文档。