Skip to content

Instantly share code, notes, and snippets.

@angvishvish
Created February 21, 2015 13:57
Show Gist options
  • Save angvishvish/92200c3688c34365cd29 to your computer and use it in GitHub Desktop.
Save angvishvish/92200c3688c34365cd29 to your computer and use it in GitHub Desktop.
Division Stringified
function DivisionStringified(num1,num2) {
var result = parseInt(num1/num2);
// code goes here
return result.toString().split('').length>3 ? parseInt(result/1000)+","+parseInt(result%1000):result;
}
DivisionStringified(8,8);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment