Skip to content
Advertisement

Convert JSON to different format using the javascript

I have the JSON please see below and I need help to convert changing the format mentioned below. I want to move the data to different columns (format mentioned below)

JSON I have

JavaScript

I want to change the above to the below format:

Expected format

JavaScript

Advertisement

Answer

Here’s a solution that flattens arbitrarily nested json inputs, assuming only that each column has only one primitive value. It takes advantage of the fact that arrays in js are really just objects with numeric keys.

JavaScript
Advertisement