{{ title }}

Mutate array

Heroes who fly (piped)

@for (hero of (heroes | flyingHeroesImpure); track hero) {
{{ hero.name }}
}

All Heroes (no pipe)

@for (hero of heroes; track hero) {
{{ hero.name }}
}