Skip to content

Instantly share code, notes, and snippets.

@ZhangSen1
Last active October 23, 2017 06:56
Show Gist options
  • Save ZhangSen1/16ed32abf37301646597 to your computer and use it in GitHub Desktop.
Save ZhangSen1/16ed32abf37301646597 to your computer and use it in GitHub Desktop.
formatNumber = function( value ) {
value = value.toString();
if ( value.length <= 3 ) {
return value;
} else {
return formatNumber( value.substr( 0, value.length - 3 ) ) + ',' + value.substr( value.length - 3 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment