Created
March 18, 2017 00:28
-
-
Save fdcore/deb945c8b4cfda05e580153fa7be8feb to your computer and use it in GitHub Desktop.
JavaScript seconds to time string with format hh:mm:ss http://stackoverflow.com/a/6313008
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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;} | |
return hours+':'+minutes+':'+seconds; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment