How can I convert seconds to an HH-MM-SS string using JavaScript?
HH-MM-SS
You can also use below code:
int ss = nDur%60; nDur = nDur/60; int mm = nDur%60; int hh = nDur/60;