How can I convert seconds to an HH-MM-SS string using JavaScript?
HH-MM-SS
new Date().toString().split(" ")[4];
result 15:08:03
15:08:03