Convert milliseconds to hours and minutes using Momentjs

前端 未结 11 2467
滥情空心
滥情空心 2020-12-09 15:00

I am new to Momentjs. I am trying to use it to convert milliseconds to hours and minutes. Below, x is milliseconds

x = 433276000
var y = moment.duration(x, \         


        
11条回答
  •  情深已故
    2020-12-09 15:12

    I ended up doing this...

    var x = 433276000
    var tempTime = moment.duration(x);
    var y = tempTime.hours() + tempTime.minutes();
    

提交回复
热议问题