Get JS-Object in Array of Objects
JavaScript
var graphicArray = [
{
prop1:
{
prop12: 'test'
},
prop2: '',
methodDoSomeThing: function(){}
},
{
prop1: '',
prop2: '',
methodDoSomeThing: function(){}
}
]
alert(graphicArray[0].prop1.prop12);