Skip to content

Instantly share code, notes, and snippets.

@WillKirkmanM
Created December 23, 2023 13:50
Show Gist options
  • Save WillKirkmanM/0d3b5943603238f869cfec1586cad85f to your computer and use it in GitHub Desktop.
Save WillKirkmanM/0d3b5943603238f869cfec1586cad85f to your computer and use it in GitHub Desktop.
Turn Minutes into Human Time (Cinema)
function humanize(minutes) {
return `${(minutes / 60).toFixed(0)} Hours ${minutes % 60} Minutes`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment