The template {{each}} directive works great for iterating over an array like this:
var myArray = [\"a\",\"b\",\"c\"];
I\'m wondering if there i
You can also use this
{{each myObj}} ${$index} - ${$value} {{/each}}