Skip to content

Instantly share code, notes, and snippets.

@rusco
Created July 19, 2018 10:57
Show Gist options
  • Save rusco/12c3588602d959cf46713578c3b010cd to your computer and use it in GitHub Desktop.
Save rusco/12c3588602d959cf46713578c3b010cd to your computer and use it in GitHub Desktop.
Convert decimal number (time) to hh:mm:ss in javascript
let decimal2HHMISS = function (decimalTimeString) {
let n = new Date(0, 0);
n.setSeconds(+decimalTimeString * 60 * 60);
return n.toTimeString().slice(0, 8);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment