Skip to content
Advertisement

How to use the result of an iteration to re-iterate?

I need to create a new array from another with the condition: for example from an array

JavaScript

I need to make an array ['1','2','148','151'] which means the path from “parentId”‘s to “id”:152 – (argument for this function).

I think main logic can be like this:

JavaScript

and the result {item.parentId} should be used to iterate again. But I don’t understand how to do it…

Advertisement

Answer

You could use a recursive function for this. First you can transform your array to a Map, where each id from each object points to its object. Doing this allows you to .get() the object with a given id efficiently. For each object, you can get the parentId, and if it is defined, rerun your traverse() object again searching for the parent id. When you can no longer find a parentid, then you’re at the root, meaning you can return an empty array to signify no parentid object exist:

JavaScript

If you want to include “152” in the result, you can change your recursive function to use the id argument, and change the base-case to return [id] (note that the + in front of id is used to convert it to a number if it is a string):

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