I want to access the first item of an array inside a meteor template, I'm using this syntax :
<p>{{array[0]}}</p>
However it doesn't seem like it's working. I don't want to iterate through values using {{#each}}
, just pick the first one from the array.