Skip to content

Instantly share code, notes, and snippets.

@Ivannnnn
Created July 21, 2022 08:39
Show Gist options
  • Select an option

  • Save Ivannnnn/13a55194554d69f9016a19916183cb7f to your computer and use it in GitHub Desktop.

Select an option

Save Ivannnnn/13a55194554d69f9016a19916183cb7f to your computer and use it in GitHub Desktop.
const secs2Time = (secs) => {
const hours = Math.floor(secs / 60 / 60).toString().padStart(2, 0)
return hours + ':' + new Date(secs * 1000).toISOString().substr(14, 5)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment