Fast question, here is my Json:
{
"items": [
{
"id": "4cd8fe75d",
"name": "foo"
},
{
"id": "5076c7e30",
"name": "bar"
},
......
{
"id": "6236c7e30",
"name": "foobar"
}
]
}
I know I can access the first "name"
foo like that: items[0].name
But what about the other (and many others following on the string?
Generally: with .each() I can access every value on an array but what about every object in a sequence (not sure if I express my point correctly)