Is there a way to get positional index during iteration in ember.js?
{{#each itemsArray}} {{name}} {{/each}}
I\'m looking for a way to
As of Ember 1.11.0, index is an optional parameter in each blocks:
index
each
{{#each items as |item index|}} {{item.name}} is at index {{index}} {{/each}}