var travelCost = 150000;
var balance = 100000;
class TravelCalc {
constructor(t,b) {
this.t = t;
this.b = b;
}
static getmoney(t,b){
let credit = t - b
return credit*2
}
}
debtAmount = TravelCalc.getmoney(travelCost,balance);
почему то переменная debtAmount не определена. В консоли vcs все работает.