Skip to content

Instantly share code, notes, and snippets.

@yyfrankyy
Created May 29, 2015 11:54
Show Gist options
  • Save yyfrankyy/8316450fdeb5d58d2013 to your computer and use it in GitHub Desktop.
Save yyfrankyy/8316450fdeb5d58d2013 to your computer and use it in GitHub Desktop.
padding function
function pad(n, m) {
return String(Array(n+1).join('0')+m).slice(-n);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment