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
new Date().toString().split(" ")[4];
result 15:08:03
15:08:03