I have this array:
[
{
id: 1,
name: 'test 1',
children: []
},
{
id: 2,
name: 'test 2',
children: [
{
id: 4,
name: 'test 4'
}
]
},
{
id: 3,
name: 'test 3',
children: []
}
]
How can I filter by the id
property in both this array and the nested children
arrays?
For example, searching for id = 3
, should return the test 3
object, and searching for id = 4
should return the test 4
object.
Another
lodash
option with children key and unlimited levels deep.That's a very simple tree traversal task. The easiest way to solve it is recursion (link to jsbin). It will work with any depth (with recursion limit of course) and it's one of the fastest ways with the worst complexity O(n):
Update:
To find all matches - a slightly modified function (jsbin link above is updated):
Using lodash, you can do something like this:
Here, thru() is used to initialize the wrapped value. It's returning the union of the original array, and the nested children. This array structure is then flattened using flatten(), so you can find() the item.