Skip to content

Instantly share code, notes, and snippets.

@mobz
Created October 4, 2009 12:21
Show Gist options
  • Save mobz/201369 to your computer and use it in GitHub Desktop.
Save mobz/201369 to your computer and use it in GitHub Desktop.
String.prototype.pad = function(n, str) { return (new Array(n - this.length)).join(str || "0"); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment