Last active
February 2, 2024 11:08
-
-
Save vankasteelj/74ab7793133f4b257ea3 to your computer and use it in GitHub Desktop.
Javascript - Seconds to Time (hh:mm:ss,ms) -> sec2time(593.685038) becomes 00:09:53,685
This file contains 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
function sec2time(timeInSeconds) { | |
var pad = function(num, size) { return ('000' + num).slice(size * -1); }, | |
time = parseFloat(timeInSeconds).toFixed(3), | |
hours = Math.floor(time / 60 / 60), | |
minutes = Math.floor(time / 60) % 60, | |
seconds = Math.floor(time - minutes * 60), | |
milliseconds = time.slice(-3); | |
return pad(hours, 2) + ':' + pad(minutes, 2) + ':' + pad(seconds, 2) + ',' + pad(milliseconds, 3); | |
} |
appreciate It
Thank you so much
I have time like this 17:49:58.606 in chrome console , How to convert to unix time stamp ?
Working good, thanks.
Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks