Convert date to UTC using moment.js

后端 未结 11 844
囚心锁ツ
囚心锁ツ 2020-12-13 01:43

Probably and easy answer to this but I can\'t seem to find a way to get moment.js to return a UTC date time in milliseconds. Here is what I am doing:

var dat         


        
11条回答
  •  臣服心动
    2020-12-13 01:43

    This worked for me. Others might find it useful.

    // date = 2020-08-31T00:00:00Z I'm located in Denmark (timezone is +2 hours)

    moment.utc(moment(date).utc()).format() // returns 2020-08-30T22:00:00Z

提交回复
热议问题