Skip to content

Instantly share code, notes, and snippets.

@wellingguzman
Last active August 29, 2015 14:10
Show Gist options
  • Save wellingguzman/536925f64e8919a322d7 to your computer and use it in GitHub Desktop.
Save wellingguzman/536925f64e8919a322d7 to your computer and use it in GitHub Desktop.
Zero Fill - JavaScript
var zeroFill = function(num, zeros) {
return (Array(zeros).join("0") + num).slice(-zeros);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment