Skip to content
Advertisement

Dynamically group flattened JSON into nested JSON object

Suppose I have the following JSON array:

JavaScript

And would like to convert it into the following multidimensional object in JavaScript (no Lodash):

JavaScript

I figure I can do it with a foreach, but I’m trying to do it using the reduce function (HOPING that is the right one to use here) and just not getting the right syntax.

My current GUESS (not working) is something along the lines of:

JavaScript

How can I do this?

Advertisement

Answer

You may use reduce as follows;

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