Skip to content

Instantly share code, notes, and snippets.

@antom
Created February 11, 2016 11:25
Show Gist options
  • Save antom/c94799d9d8934d8a5d24 to your computer and use it in GitHub Desktop.
Save antom/c94799d9d8934d8a5d24 to your computer and use it in GitHub Desktop.
Javascript Left Padding
var padleft = function(value,padding,chr) {
return (Array(++padding).join(chr || '0') + value).slice(-padding);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment