I have an object which helds an array of owners objects.
carData.Porsche[0].OwnerName;
carData.Porsche[1].OwnerName;
carData.Ferrari[0].OwnerName;
carData.Ferrari[1].OwnerName;
carData.Ferrari[2].OwnerName;
I would like to iterate through this data structure so I will print:
Porsche: OwnerName, Porsche: OwnerName, Ferrari: OwnerName etc..
but I have no clue how ( I'm new to Javascript). Would appreciate some tips.