Skip to content
Advertisement

Javascript Filter and Some on Array of Objects

I have this array of objects

JavaScript

I have to filter this list with 4 different select boxes, Catalogues, Categories, Suppliers, Type.

I can filter the list for type because it is not in an array like so

JavaScript

but for catalogues, categories and suppliers they are a level down. I have tried

JavaScript

but I get catalogs.some is not an object, I also tried catalogs.filter but I get the same error.

What is the best way to filter the items based on values within a nested array of objects?

Advertisement

Answer

.some is a function that belongs to Arrays. You are calling it on each element of the array.

Try this instead.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement