-
-
Save Erichain/6d2c2bf16fe01edfcffa to your computer and use it in GitHub Desktop.
JavaScript: Convert milliseconds to object with days, hours, minutes, and seconds
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 convertMS( milliseconds ) { | |
var day, hour, minute, seconds; | |
seconds = Math.floor(milliseconds / 1000); | |
minute = Math.floor(seconds / 60); | |
seconds = seconds % 60; | |
hour = Math.floor(minute / 60); | |
minute = minute % 60; | |
day = Math.floor(hour / 24); | |
hour = hour % 24; | |
return { | |
day: day, | |
hour: hour, | |
minute: minute, | |
seconds: seconds | |
}; | |
} |
How could I use this function for years, months, weeks, days, hours and minutes?
var years = Math.floor(days / 365);
Thanks !!
You're the best! Thank you so much!
Thanks!
How could I use this function for years, months, weeks, days, hours and minutes?
var years = Math.floor(days / 365);
trying to accomodate leap years will be a pain 🤢
awesome work, thank you
great bro....you just save my time...thanku so much
thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How could I use this function for years, months, weeks, days, hours and minutes?