Skip to content

Instantly share code, notes, and snippets.

@ibare
Created September 7, 2017 01:46
Show Gist options
  • Select an option

  • Save ibare/b8d8377b535f4387fda440d87a8bf9f9 to your computer and use it in GitHub Desktop.

Select an option

Save ibare/b8d8377b535f4387fda440d87a8bf9f9 to your computer and use it in GitHub Desktop.
pad example
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