Skip to content

Instantly share code, notes, and snippets.

@gladiatorAsh
Created June 18, 2015 10:52
Show Gist options
  • Save gladiatorAsh/4fb179448cc73e35da70 to your computer and use it in GitHub Desktop.
Save gladiatorAsh/4fb179448cc73e35da70 to your computer and use it in GitHub Desktop.
Pad Nums
function PrefixInteger(num, length) {
return (Array(length).join('0') + num).slice(-length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment