I have an array of objects with all values being different:
[
{"val"::val,"xxx":"zzz","eee":"fff"},
{"val":val},
{val"::val,"xxx":"zzz","eee":"fff","val":val,"xxx":"zzz","eee":"fff"}
]
There are different values with different property names. I'm trying to dynamically display them in a html table.
The point would be to have a table without headers where the length of a row can be different from the previous one and where only specified values are displayed.
In the previous example the result would be a table with: 3 rows.
The first row having 3 cell
val | zzz | fff
second row 1 cell
val |
Third row 6 cell
val | zzz | fff | val | zzz | fff
How can I generate such a table knowing that I wont know the key of any value and will need to display only the value and that without th. I also can't predict the length of the document.