fraction=function(n,d){ this.numer=n; this.denom=d; this.valeur=n/d; if(this.valeur>=0){ this.signe="+"; } else { this.signe="-"; } }