Foundy
Results
1
comments of
Foundy
forEach support object arrays. [forEach](https://github.com/helpers/handlebars-helpers#foreach) You can use the `eachIndex` helper. [eachIndex](https://github.com/helpers/handlebars-helpers#eachindex) ``` {{#eachIndex array}}{{item}}{{/eachIndex}} ``` or just use the built-in `each` helper. ``` {{#each array}}{{this}}{{/each}} ```