Skip to content
Advertisement

How to keep the parent id of the children when creating an object recursively?

I have an object similar to this one:

JavaScript

And I want to construct a tree from it:

JavaScript

I write this code to create the tree:

JavaScript

However, I’m stucked how to keep the track of the parent ids of a children and save them in a path attribute. How can I fix that?

Advertisement

Answer

You have a recursive function, so just pass the path down through the calls (starting with an empty array) and append to it as you go:

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