I’m trying to find items from one list that are not in items in a second list. Almost by dumb luck I got it to work, but only with arrow functions. For me normal functions are easier to read so I tried converting it and the result isn’t what I expect. data: version 1 version 2 To make the correct
Tag: nested-lists
How to dynamically create a table from a JSON with nested lists using Javascript?
I’m trying to create an HTML table from a JSON file which values can include nested lists. Example: My goal is to create an HTML table with a predefined header for the two columns: header_title_1 header_title_2 That will never change, and the table should look like this: Thanks for your help ! Answer Using the for…in iterator on the object