I get a time difference from mongodb:
9.266666666666667
and rounded it off to two decimal places:
9.27
Now i want to format it to 00:00 time format. And i tried to format this using moment js:
moment(9.27).format('HH:mm')
But it returns:
08:00
which is wrong.
It should be:
09:16
Anyone have ideas? Thank you.