Skip to content

Instantly share code, notes, and snippets.

@jimfleming
Created August 31, 2010 17:16
Show Gist options
  • Save jimfleming/559372 to your computer and use it in GitHub Desktop.
Save jimfleming/559372 to your computer and use it in GitHub Desktop.
var zero_pad = function(value, length) {
value = value.toString();
while (value.length < length)
value = '0' + value;
return value;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment