I have some json data that contains an array of arrays. I would like to use {{each}} within a template to loop through the outer array and then within that {{each}} statement I need to loop through the inner array as well.
Here is what my template looks like with the line that I am having trouble with bolded.
{{each rows}}
{{each rows[$($index)]}} - I want to access the first element of the outer array here and loop through it
{{/each}}
{{/each}}
</table>
</
script> Here is what my Json looks like
{
"rows": [
[
"3/23",
"20.315"
],
[
"3/24",
"19.755"
],
]
}
Would appreciate any help that could be provided.
Thanks,
Linda