How can I iterate through arrays with both objects and arrays and again nested arrays plus how to get the objects keys as well with one iteration? I know there are many posts online about nested objects/arrays but whatever I tried doesnt work and help would be great. I havent added what I tried as its all wrong, but can add it as well if anyone wants. Thanks!!
var objects =[
{lisa:[{age:22, city: "rome", country: "italy", colorpairs:{white: ["blue","red"], price: 100}}, {age:2, city: "xxx", country: "italy"},{age:92, city: "yyy", country: "italy"}]},
{ mike:[{age:22, city: "rome", country: "italy", colorpairs:{white: ["blue","red"], price: 100}}, {age:2, city: "xxx", country: "italy"},{age:92, city: "yyy", country: "italy"}]},
{luis:[{age:22, city: "rome", country: "italy", colorpairs:{white: ["blue","red"], price: 100}}, {age:2, city: "xxx", country: "italy"},{age:92, city: "yyy", country: "italy"}]},
]