How to convert hours and minutes to minutes with moment.js?

前端 未结 5 701
时光说笑
时光说笑 2021-01-01 17:19

I need to convert hours and minutes in minutes values. With pure JavaScript Date object I do the following:

var d = new Date();
var minutes = d.getHours() *          


        
5条回答
  •  灰色年华
    2021-01-01 17:23

    I think your best bet is to create a Duration and then get the minutes using asMinutes. This is probably clearer when describing an interval of time.

    moment.duration().asMinutes()
    

    Here is the reference in the docs.

提交回复
热议问题