I need access to next item in array while using foreach loop in handlebars.js.I've tried:
{{#each items}}
{{#ifEven @index}}
<p>{{this.description}} - {{../items.[@index+1].description}}</p>
{{/ifEven}}
{{/each}}
but it seems that's not working correctly.