Convert second into hh:mm (hours: Minutes)

Radhe
Tera Expert

Hi All,

Please advise how to convert duration result from second to hh:mm:ss (hours: Minutes: second).

find_real_file.png

On change script-

find_real_file.png

Script include -

find_real_file.png

 

1 ACCEPTED SOLUTION

Jaspal Singh
Mega Patron
Mega Patron

Hi Radhe,

 

Replace line 8 in script include with below.

var h = Math.floor(dur / 3600);
var m = Math.floor(dur % 3600 / 60);
var s = Math.floor(dur % 3600 % 60);
var finalis=h +':'+m+':'+':'+s;

return finalis;

View solution in original post

10 REPLIES 10