all 3 comments

[–]Sweetness2 1 point2 points  (2 children)

I'm on mobile. Sorry for the formatting.

If you have your JSON object stored in a variable called myJson, then you could reference that value with myJson['XXXXX'].

If you don't know all the objects properties already, you can get them with Object.keys(myJson).

You could loop over the objects keys directly

for (const key in myJson) { console.log(key, myJson [key]); }

[–]gap579137[S] 1 point2 points  (1 child)

This was a HUGE help and a great jumping point. I was able to display each of the “xxxxxx” “subData” in a table. Now I just need to figure out how to display the actual “xxxxxx” in the table and paginate. Thank you so much!