How to get an array value at index using Handlebars.js?
Say I have JSON: { userinput: [ {name: "brian", "value": "i like pies"}, {name: "susan", "value": "memes are stupid"} ], feedback: [ {value: "i also like pies"}, {value: "null"} ] } And I'm trying to draw a table like this: name ..... | input ...... | feedback -----------|----------------|----------------- brian | I like pies | I also like pies susan | mems are stupid| null And while I recognise that it would be better to have feedback as a value of "userinput", what I have is not done like that ... I'm trying to get the index of feedback inside {{#each userinput}}`, e.g. {{#each userinput}}