'm using moment to format some of my times in my app. This is working wonderfully, however I have one spot where I am counting how many hours instead of converting it to a regular time format.
The time that I have to work with looks something like this. 0:00:02 AM
and my formatting like of looks like this. I'm trying to strip out the am pm since it is not needed here
moment('0:00:02 AM', 'hh:mm:ss').format('hh:mm:ss')
this is turning it to 12:00:02, but I need it to stay at 00:00:02. Any help would be appreciated!
You need to use
HH
instead ofhh
.An example has been included below: