Skip to content

Instantly share code, notes, and snippets.

@jickoo
Created March 19, 2021 08:48
Show Gist options
  • Save jickoo/edf34a6a63c48766d5673e14e2b00b26 to your computer and use it in GitHub Desktop.
Save jickoo/edf34a6a63c48766d5673e14e2b00b26 to your computer and use it in GitHub Desktop.
javascript changeTimeFormat
const changeTimeFormat = (seconds: number) => {
var hour = parseInt('' + seconds/3600);
var min = parseInt('' + (seconds%3600)/60);
var sec = Math.floor(seconds%60);
return `${hour}:${min}:${sec}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment