Iterate over objects
Iterate over objects if you need keys or values:
use
.att
to print the attributeuse
.val
to print the value
Data
People name
People age
{d.myObject[i].att}
{d.myObject[i].val}
{d.myObject[i+1].att}
{d.myObject[i+1].val}
Last updated