I want to convert a duration of time, i.e., number of seconds to colon-separated time string (hh:mm:ss)
I found some useful answers here but they all talk about conv
Easiest way to do it.
new Date(sec * 1000).toISOString().substr(11, 8)