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

前端 未结 5 694
时光说笑
时光说笑 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:45

    For those seeking to get minutes from an existing Moment object, you can first format it to whatever you need, then use duration to get its duration in minutes:

    moment.duration(myMomentObjectToConvert.format("HH:mm")).asMinutes()
    

提交回复
热议问题