John Doe
John Doe

Reputation: 55

momentjs format time in seperate hours an minutes

I use momentjs inside angular js and I acount the duration in seconds and I can format it in HH:mm format as 03:35 but I cannot find in documentaion and google to how show it in format 3h 35m could anybody point me to right documentation???

Upvotes: 1

Views: 152

Answers (1)

John Veldboom
John Veldboom

Reputation: 2267

This should get what you're after:

moment().format("H[h] mm[m]");

Take a look at Format from the momement.js docs. The [] is used to escape characters in format strings.

Upvotes: 3

Related Questions