i want to add 3 prices like 18+10+5 but it is returning answer as 18105 instead of 33.as shown in code totalPrice, extraFoodPrice, extraNonFoodPrice are number type.
finalAmount() {
return this.totalPrice + this.extraFoodPrice + this.extraNonFoodPrice;
}