I have the following array in my Angular application:
Each element contains a supplier and one or more products.
How can I get a count of all the products that are returned?
I can get the products themselves by doing this:
array.map(x=>x.products)
And I can get a count of the products for each element by doing this:
array.map(x=>x.products.length)
But how do I then sum that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…