Advertisement
nikolayneykov

Untitled

Aug 14th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  public totalPrice(): number {
  2.     return this.productList.reduce((acc: number, el: Product) => acc + el.price, 0);
  3.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement