Skip to content

Instantly share code, notes, and snippets.

@rolandpeelen
Created July 22, 2018 18:54
Show Gist options
  • Select an option

  • Save rolandpeelen/ac10ab510162279287e34e731019db7b to your computer and use it in GitHub Desktop.

Select an option

Save rolandpeelen/ac10ab510162279287e34e731019db7b to your computer and use it in GitHub Desktop.
take milliseconds and turn them into hours
// 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