var plain_array = [1, 2, 3, 4, 5, 6, 7]
How can I show all elements in Meteor Handlebars?
{{#each plain_array}} # What to put here to g
From Handlebars documentation.
{{#each people}} {{this}} {{/each}}