Skip to content

Instantly share code, notes, and snippets.

@gbrits
Created March 16, 2021 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbrits/f5231c8c05f5ab77a3ea848a443e2af6 to your computer and use it in GitHub Desktop.
Save gbrits/f5231c8c05f5ab77a3ea848a443e2af6 to your computer and use it in GitHub Desktop.
Seconds to hh mm ss
toHHMMSS(secs: number) {
var sec_num = parseInt(Math.abs(secs), 10);
var hours = Math.floor(sec_num / 3600);
var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
var seconds = sec_num - (hours * 3600) - (minutes * 60);
if (hours < 10) {hours = "0"+hours;}
if (minutes < 10) {minutes = "0"+minutes;}
if (seconds < 10) {seconds = "0"+seconds;}
if(hours > 0) {
return hours+'h '+minutes+'m '+seconds+'s';
}
if(minutes > 0) {
return minutes+'m '+seconds;
}
if(seconds > 0) {
return seconds+'s';
}
return 'N/A';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment