Skip to content

Instantly share code, notes, and snippets.

@gaowhen
Created March 26, 2015 08:22
Show Gist options
  • Select an option

  • Save gaowhen/786325f7cf0af5c7b00a to your computer and use it in GitHub Desktop.

Select an option

Save gaowhen/786325f7cf0af5c7b00a to your computer and use it in GitHub Desktop.
function prefix_integer(num, length) {
var len = length || 2;
return (num / Math.pow(10, len)).toFixed(len).substr(2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment