I have an array with 10 elements. Each element is also an array and each of their children are objects.
Lets call it "array".
array[0] gives me the first element. It is filled with 20 objects.
I want to get the first one, and then a value in that object, such as this:
var id = array[0].getFirstElement().id;
How do I do it?
I tried array[0][0] and other things but didn't work.