I have the server passing back this JSON and I'm not sure how to loop through a 2-dimensional array in Handlebars.
"userSurvey":[[1],[2],[3]]
I know to use {{#each userSurvey}}
but then how would I go about do the arrays inside the usersurvey
object?
You'd have to loop 2 times:
{{#each userSurvey}}
{{#each this}}
{{ this }}
{{/each}}
{{/each}}