Dlaczego ten fragment kodu jest nieprawidłowy w AngularJS
private calculateTotal(order: InventoryOrder):number{
let total = 0.0;
if(order && order.currentInventory){
order.currentInventory.forEach(x =>{
console.log(x.quantity);
console.log("helloworld");
});
}
return total;
}
SAMER SAEID