Skip to content

Instantly share code, notes, and snippets.

@lcomino
Created June 28, 2016 20:44
Show Gist options
  • Save lcomino/718d0f2c33b726788760ec9bc6566b23 to your computer and use it in GitHub Desktop.
Save lcomino/718d0f2c33b726788760ec9bc6566b23 to your computer and use it in GitHub Desktop.
Format a number with leading zeros
// http://stackoverflow.com/a/11187738 | http://stackoverflow.com/users/445126/mild-fuzz
Number.prototype.pad = function(size) {
var s = String(this);
while (s.length < (size || 2)) {s = "0" + s;}
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment