Convert date to UTC using moment.js

后端 未结 11 847
囚心锁ツ
囚心锁ツ 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:51

    moment.utc(date).format(...); 
    

    is the way to go, since

    moment().utc(date).format(...);
    

    does behave weird...

提交回复
热议问题