Simple array

The following example shows how to travel an array of cars.

Data

{
  "cars" : [
    {"brand" : "Lumeneo"},
    {"brand" : "Tesla"  },
    {"brand" : "Toyota" }
  ]
}
Cars

{d.cars[i].brand}

{d.cars[i+1].brand}

Last updated