this.plus=function(g){ return new fraction(this.numer*g.denom+this.denom*g.numer,this.denom*g.denom); } this.moins=function(g){ return this.plus(g.oppose()); } this.fois=function(g){ return new fraction(this.numer*g.numer,this.denom*g.denom); } this.sur=function(g){ return this.fois(g.inverse()); }