Created
July 22, 2018 18:54
-
-
Save rolandpeelen/ac10ab510162279287e34e731019db7b to your computer and use it in GitHub Desktop.
take milliseconds and turn them into hours
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
| // Take a duration in ms and convert it to either Hours, minutes or seconds; | |
| const msToHours = (duration) => duration / 60 / 60 / 1000; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment