Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created October 9, 2014 03:03
Show Gist options
  • Select an option

  • Save chikoski/1eff2477bac1757ab95c to your computer and use it in GitHub Desktop.

Select an option

Save chikoski/1eff2477bac1757ab95c to your computer and use it in GitHub Desktop.
var add = function(a, b){
var bunshi;
var bunbo;
if(Number.isInteger(b)){
b = frac(b, 1);
}
if(a.bunbo != b.bunbo){
bunshi = a.bunshi * b.bunbo + b.bunshi * a.bunbo;
bunbo = a.bunbo * b.bunbo;
}else{
bunshi = a.bunshi + b.bunshi;
bunbo = a.bunbo;
}
var answer = frac(bunshi, bunbo);
return answer;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment