Either change rate = '1.37';
to rate = 1.37;
or change
return this.amount * this.rate;
to return this.amount * Number(this.rate);
You should also rename the variable from
to convertFrom
, because from
is a reserved term.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…