Skip to content

Instantly share code, notes, and snippets.

@codyyc
Created October 2, 2013 20:00
Show Gist options
  • Save codyyc/6799639 to your computer and use it in GitHub Desktop.
Save codyyc/6799639 to your computer and use it in GitHub Desktop.
Number.prototype.pad = function(size){
if(typeof(size) !== "number"){size = 2;}
var s = String(this);
while (s.length < size) s = "0" + s;
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment