{{ title }}

Create a new hero and press enter to add it to the list.

Heroes who fly (piped)

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

All Heroes (no pipe)

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