Skip to content

Instantly share code, notes, and snippets.

@emmgfx
Last active August 29, 2015 14:22
Show Gist options
  • Save emmgfx/5fb1ab747e9f643e5dfd to your computer and use it in GitHub Desktop.
Save emmgfx/5fb1ab747e9f643e5dfd to your computer and use it in GitHub Desktop.
Javascript number pad
Number.prototype.pad = function(size) {
var s = String(this);
while (s.length < (size || 2)) {s = "0" + s;}
return s;
}
// Examples:
var i = 1;
i.pad(); //returns "01"
i.pad(3); //returns "001"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment