Skip to content

Instantly share code, notes, and snippets.

@naosim
Created March 26, 2015 15:15
Show Gist options
  • Save naosim/fc1877495149a0e2366a to your computer and use it in GitHub Desktop.
Save naosim/fc1877495149a0e2366a to your computer and use it in GitHub Desktop.
ゼロ埋め
var zerofill = function(num, zeros) { return (Array(zeros).join('0') + num).slice(-zeros); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment