Skip to content

Instantly share code, notes, and snippets.

@mmckegg
Created October 13, 2013 02:02
Show Gist options
  • Save mmckegg/6957222 to your computer and use it in GitHub Desktop.
Save mmckegg/6957222 to your computer and use it in GitHub Desktop.
function padNumber(number, pad) {
var N = Math.pow(10, pad);
return number < N ? ("" + (N + number)).slice(1) : "" + number
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment