I wanted to convert seconds to hours using dateFormat nodejs package but it's not giving expected result.
My code :
import dateFormat from 'dateformat';
console.log(dateFormat(3600, "HH"));
Result:
when trying to convert 3600 secs to hrs then instead of giving output as 1 hr, it's giving output as 5 hrs