How to count items in a nested array?

Rob*_*lls 2 javascript

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)
Run Code Online (Sandbox Code Playgroud)

And I can get a count of the products for each element by doing this:

array.map(x=>x.products.length)
Run Code Online (Sandbox Code Playgroud)

But how do I then sum that?

Vto*_*one 8

You can use reduce to handle this.

const totalProducts = arr.reduce((count, current) => count + current.products.length, 0);
Run Code Online (Sandbox Code Playgroud)

The concept of reduce is to take an array and "reduce" it down to a single entity. That entity can be an object, another array, number...

The 0 at the end initializes the reduce entity. Since you are going for a sum, set it to 0 and then add to it.

  • 在此处查看详细信息:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce (2认同)