Hi I have trouble with an array response of json.
I'm supposed to get the members of the objects. but that array is inside another array.
This is the array that is being returned.
var arr = [
[
    {
        "id": 4243430853,
        "email": "[email protected]",
    },
    {
        "id": 4227666181,
        "email": "[email protected]",
    },
    {
        "id": 4227644293,
        "email": "[email protected]",
    }
],
[
    {
        "id": 4243430854,
        "email": "[email protected]",
    },
    {
        "id": 4227666182,
        "email": "[email protected]",
    },
    {
        "id": 4227644294,
        "email": "[email protected]",
    }
]   
];
How can i dig down to the values? before I would use arr[i].email, but now it doesn't work. I've tried arr[0].[i].email, but returns be the error missing name after . operator. Is there a way that I can remove that outer array?


.between the brackets.