Skip to content

Instantly share code, notes, and snippets.

@abelorian
Created February 7, 2015 06:50
Show Gist options
  • Save abelorian/f06f0c8b70fd62612a16 to your computer and use it in GitHub Desktop.
Save abelorian/f06f0c8b70fd62612a16 to your computer and use it in GitHub Desktop.
Seconds to HH:MM:SS
function sec(time){
var all_time = time;
var hours = Math.floor(time / 3600);
var minutes = Math.floor((time % 3600)/60);
var seconds = time % 60;
minutes = minutes < 10 ? '0' + minutes : minutes;
seconds = seconds < 10 ? '0' + seconds : seconds ;
var result = hours +" : " + minutes + " : " + seconds;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment