Skip to content

Instantly share code, notes, and snippets.

@blackmiaool
Created February 11, 2016 15:00
Show Gist options
  • Save blackmiaool/66204964a11be5aa8726 to your computer and use it in GitHub Desktop.
Save blackmiaool/66204964a11be5aa8726 to your computer and use it in GitHub Desktop.
add zero to format string
function pad(num, n) {
return Array(num>n?(n-(''+num).length+1):n).join(0)+num;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment