Access array elements using indexes. For example:
{
"obj": [
{"prop": "abc"},
{"prop": "def"}
]
}
To access the second element use `obj[1].prop`, for the first element use `obj[0].prop`.
Access array elements using indexes. For example:
{
"obj": [
{"prop": "abc"},
{"prop": "def"}
]
}
To access the second element use `obj[1].prop`, for the first element use `obj[0].prop`.