Skip to content

Instantly share code, notes, and snippets.

@Paulofsr
Forked from endel/number-pad-zero.js
Created July 26, 2018 20:16
Show Gist options
  • Save Paulofsr/fd8eb0f9d10ba269c9004f1633939377 to your computer and use it in GitHub Desktop.
Save Paulofsr/fd8eb0f9d10ba269c9004f1633939377 to your computer and use it in GitHub Desktop.
Simplest way for leading zero padding in JavaScript
Number.prototype.pad = function(size) {
var s = String(this);
while (s.length < (size || 2)) {s = "0" + s;}
return s;
}
(1).pad(3) // => "001"
(10).pad(3) // => "010"
(100).pad(3) // => "100"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment