Skip to content

Instantly share code, notes, and snippets.

@nathantaal
nathantaal / msconvert.js
Last active November 11, 2017 11:10 — forked from remino/msconvert.js
JavaScript: Convert milliseconds to object with days, hours, minutes, and seconds
formatDate(ms){
let d, h, m, s;
s = Math.floor(ms / 1000);
m = Math.floor(s / 60);
s = s % 60;
h = Math.floor(m / 60);
m = m % 60;
d = Math.floor(h / 24);
h = h % 24;