I have a list of objects in meteorjs which I am iterating in meteorjs templates like
{{#each objects}}
{{/each}}
In the template I want to print the number of the loop iteration. That is, if the length of the objects list is 100 I want to print the numbers from 1 to 100 in the template. How can I do this?