How to convert Date to timestamp using MomentJS?

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

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

4条回答
  •  猫巷女王i
    2021-01-31 00:15

    To get the time from the date use the format method of momentjs

    var date = moment('2016-10-11 18:06:03').tz('Europe/Paris').format();
     
    
    console.log(date);
    console.log(moment(date).format("X"));
    console.log(moment(date).format("x")); // for milliseconds
    console.log(moment(date).format("HH:mm"));
    console.log(moment(date).format("hh:mm A"));
    
    

提交回复
热议问题