Created
June 18, 2015 10:52
-
-
Save gladiatorAsh/4fb179448cc73e35da70 to your computer and use it in GitHub Desktop.
Pad Nums
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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