Hi,
So I have the following values in my loop:
369
369
269
I have a method:
getTotalAmount() {
if (this.ordersummary) {
return this.ordersummary.map(t => t.order_cost).reduce((a, value) => a + value, 0);
}
return 0;
}
this outputs: 0369369269
Please help, I need these values to be added