Skip to content
Advertisement

Transform html into object in Javascript

I am trying to convert

JavaScript

into

JavaScript

Current Output

JavaScript

Below is my current approach using recursion

JavaScript

Stackblitz Demo Here

Advertisement

Answer

I went for the recursive approach and created an output that is similar to your expected output.

JavaScript

I do some assumptions with the open and close tags since I just do some string concatination to add the <> around the tags. Other than that I trim() the value inputs to remove the unwanted whitespace around the value.

This does make some assumptions about the html, like it always having start and closing tags, and such. A further improvement that could be done would be to test for that also.

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