Skip to content
Advertisement

How to reconstruct Json

I am currently having problem on modifying a Json schema, the schema is below:

JavaScript

I know this can be done using recursion, and I have tried to fetch the required item(code is below), but I have no idea how to put the required item back into properties and change to boolean value. Thanks in advance.

JavaScript

I want to put it into such format:

JavaScript

Advertisement

Answer

You can use recursive function with for...in loop and update object with required key on any level.

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