Skip to content

Instantly share code, notes, and snippets.

@johnstew
Created February 27, 2013 15:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnstew/5048658 to your computer and use it in GitHub Desktop.
Save johnstew/5048658 to your computer and use it in GitHub Desktop.
CoderByte Challenge: Formatted Division
function FormattedDivision(num1, num2){
var quotient = num1 / num2;
var fixed = quotient.toFixed(4);
var parts = fixed.toString().split(".");
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",");
return parts.join(".");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment