Skip to content

Instantly share code, notes, and snippets.

@JerrySievert
Created May 14, 2014 23:27
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 JerrySievert/9a1f4a8eeec425c9939c to your computer and use it in GitHub Desktop.
Save JerrySievert/9a1f4a8eeec425c9939c to your computer and use it in GitHub Desktop.
monkey patched pad
Number.prototype.pad = function (length) {
var str = this.toString();
while (str.length < length) {
str = '0' + str;
}
return str;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment