Created
September 7, 2017 01:46
-
-
Save ibare/b8d8377b535f4387fda440d87a8bf9f9 to your computer and use it in GitHub Desktop.
pad example
This file contains hidden or 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
| var pad = size => num => (Array(size-String(num).length+1)).join('0')+num; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment