Skip to content

Instantly share code, notes, and snippets.

@d4rkr00t
Created February 28, 2014 13:46
Show Gist options
  • Save d4rkr00t/9271378 to your computer and use it in GitHub Desktop.
Save d4rkr00t/9271378 to your computer and use it in GitHub Desktop.
Pad Zeros
function pad(num){
return ('00'+num).slice(-2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment