I have to sum some hours and show total above 24hours.
example:
const result = moment('00:00:00', 'HH:mm:ss');
result.add(moment.duration('10:00:00'))
result.add(moment.duration('10:00:00'))
result.add(moment.duration('06:00:00'))
console.log(result.format('HH:mm:ss'));
the output is 02:00:00 and i want it to be 26:00:00.