Skip to content

Instantly share code, notes, and snippets.

@naxmefy
Created October 31, 2020 21:34
Show Gist options
  • Save naxmefy/1dfb2fa55ff15966bf6324f14f49d03d to your computer and use it in GitHub Desktop.
Save naxmefy/1dfb2fa55ff15966bf6324f14f49d03d to your computer and use it in GitHub Desktop.
function decimalToReducedFraction(d) {
for(n=1;d*n%1!==0;n++);
return [d*n,n];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment