Distinct items

To select distinct rows according to the attribute's value, use a custom iterator.

Data

[
  { type: "car", brand: "Tesla" },
  { type: "plane", brand: "Airbus" },
  { type: "plane", brand: "Boeing" },
  { type: "car", brand: "Toyota" }
];
Vehicles

{d[type].brand}

{d[type+1].brand}

Last updated