Skip to content

Instantly share code, notes, and snippets.

@hmasato
Created November 25, 2013 15:29
Show Gist options
  • Save hmasato/7643043 to your computer and use it in GitHub Desktop.
Save hmasato/7643043 to your computer and use it in GitHub Desktop.
[Javascript] _padding
function _padding(val,n)
{
n -= (''+val).length-1;
return((n>0?(new Array(n)).join('0'):'')+val);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment