AM trying to format momentjs to hh:mm:ss in over 24 hours but i only get 1 hour so i have tried
const start = moment('2019-02-27 00:00');
const end = moment('2019-03-01 01:00');
var diff =end.diff(start, 'seconds', true)
let ff = moment.utc((diff) * 1000).format('HH:mm:ss')
console.log(ff)
In the above i expected to get
49:00:00
as its two days and 1 hour so 24*2
since each day has 24 hours plus the one hour from 00:0 to 01:00
WHere am i going wrong as it shows 01:00:00
instead of 49:00:00