Html – set variable in hbs template using ember.js
I have an array of data and I need to iterate over it in my hbs template: {{#each-in myArray.[0] as |key value|}} <th> {{value}} </th> {{/each-in}} {{#each-in myArray.[1] as |key value|}} <th> {{value}} </th> {{/each-in}} How do I declare a…