Skip to content

Tag: data-structures

Array of products arrange by category

I’m trying to arrange this array of products by categories. For now, I get the count of each category but I can’t figure out how to make this two dimension array output. This is my code for now: Answer You can group elements by reducing over the array using an object to store elements belonging to…