i am trying to add some values. The problem is if one field is empty, the total calculation doesn't show. How can i solve this problem. all my fields type is number. and i am using vue js
grand_total: function(){
let x = parseInt(this.formData.total_allowance) + parseInt(this.formData.air_fair);
this.formData.grand_total = x;
return x;
}
here. if one value is empty,the total doesnt show up