Skip to content

Instantly share code, notes, and snippets.

@NKid
Created February 7, 2013 01:34
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 NKid/7718047db8c270ba42d6 to your computer and use it in GitHub Desktop.
Save NKid/7718047db8c270ba42d6 to your computer and use it in GitHub Desktop.
padLeft
function padLeft(nr, n, str) {
return Array(n - String(nr).length + 1).join(str || '0') + nr;
}
console.log(padLeft(123,5,'#')); //##123
console.log(padLeft(123,5)); //00123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment