How to convert Date to timestamp using MomentJS?

前端 未结 4 1690
醉梦人生
醉梦人生 2021-01-30 23:50

I used MomentJS to convert local date to UTC date using the following way:

4条回答
  •  迷失自我
    2021-01-31 00:31

    Just to expand on something mentioned earlier. These generate the results.

    // less precision
    moment().unix() === moment().format('X')  // uppercase X
    
    // more precision
    moment().valueOf() === moment().format('x')  // lowercase x
    

    Hope that sheds some light

提交回复
热议问题