Skip to content

Instantly share code, notes, and snippets.

@grefel
Created March 16, 2016 13:33
Show Gist options
  • Save grefel/42e014d3309027347734 to your computer and use it in GitHub Desktop.
Save grefel/42e014d3309027347734 to your computer and use it in GitHub Desktop.
Pad a number
function pad (number, length, fill) {
if (fill === undefined) fill = "0";
var str = '' + number;
while (str.length < length) {
str = fill + str;
}
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment