Skip to content
Advertisement

Filter array of infinitely nested objects

Let’s say I have an array of nested objects such as:

JavaScript

And I would like to return a new array with id: 3 excluded for example. So it would become:

JavaScript

The excluded id can be from any level, and it and its children should be removed. What’s the best approach to do this? I’ve tried several other solutions with no luck so far.

Advertisement

Answer

You can use recursion and Array.reduce,..

eg.

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