I am trying to convert seconds in hh:mm:ss format . I have using below code to convert seconds into hours,min. but I don't want to do all this. Is it possible in moment.js to convert seconds into HH:MM:SS format. rather than doing it manually.
var x = 43000
var durationValue = moment.duration(x, 'milliseconds');
var hours = Math.floor(durationValue.asHours());
var mins = Math.floor(durationValue.asMinutes()) - hours * 60;
console.log("hours:" + hours + " mins:" + mins);
moment("1900-01-01 00:00:00").add(43000/1000, 'seconds').format("HH:mm:ss")
try this?
moment's duration doesn't have millisec in their definition, you should divide it by 1000.
http://momentjs.com/docs/#/manipulating/add/
http://momentjs.com/docs/#/durations/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With