I have this array of objects and I want to show all value in each object:
var array = [{obj1:{property1:"value1",property2:"value2",property3:"value3"}},
{obj2:{property1:"value1",property2:"value2",property3:"value3"}},
{obj3:{property1:"value1",property2:"value2",property3:"value3"}}];
When I try something like this I only get to show the key but not the value
for (let i in array){
for (let key1 in array[i]) {
Any help?