Skip to content

Instantly share code, notes, and snippets.

@lyonsun
Created June 9, 2014 07:54
Show Gist options
  • Save lyonsun/0f1574c6ba735b3561d8 to your computer and use it in GitHub Desktop.
Save lyonsun/0f1574c6ba735b3561d8 to your computer and use it in GitHub Desktop.
return result in format '00:00:00' of certain time duration
String.prototype.toHHMMSS = function () {
var sec_num = parseInt(this, 10); // don't forget the second param
var hours = Math.floor(sec_num / 3600);
var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
var seconds = sec_num - (hours * 3600) - (minutes * 60);
if (hours < 10) {hours = "0"+hours;}
if (minutes < 10) {minutes = "0"+minutes;}
if (seconds < 10) {seconds = "0"+seconds;}
var time = hours+':'+minutes+':'+seconds;
return time;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment