Skip to content
Advertisement

How to convert array into a tree structure in javascript

This is my array. I am just trying to frame a hierarchy tree with grandparent->parent->child name relationship. Please help me fix this. Sample input will be like below

JavaScript

Expected Output is something like this. Please ignore if any syntax errors

JavaScript

Advertisement

Answer

You could use reduce and forEach methods to create nested structure and also one array where you can specify the order of keys that you want to iterate by.

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