Skip to content

Instantly share code, notes, and snippets.

@drewbo
Forked from mihi-tr/ZeroPad.js
Created August 22, 2014 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewbo/d2b099d7749332bee31f to your computer and use it in GitHub Desktop.
Save drewbo/d2b099d7749332bee31f to your computer and use it in GitHub Desktop.
// Zero Pad a number in Javascript
// Takes e.g. zp(42,5) -> "00042"
var zp = function(n,c) {
var s = String(n);
if (s.length< c) { return zp("0" + n,c) }
else { return s } };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment