Skip to content
Advertisement

how to convert minutes to HH:mm with moment plugin

I have 2 timestamps and i already calculated the time difference in minutes with moment plugin. Now i want to convert the minutes to HH:mm.

JavaScript

What i am doing wrong?

Advertisement

Answer

Since you have not specified what is the error, I’m assuming you are leaving the dependencies required for duration method.

The moment-duration-format depends on moment, so you should require it before using it.

JavaScript

Then either you can import the dependencies or require them.

JavaScript

JavaScript

Note: require is a Node.JS function and doesn’t work in client side scripting without certain requirements. More info

Hope it helps Thanks

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement