Rendering a string array with handlebars
Yes, you should use an each loop: <ul> {{#each selectedUsers}} <li>{{ this }}</li> {{/each}} </ul> From the docs: You can iterate over a list using the built-in each helper. Inside the block, you can use this to reference the element being iterated over. <ul class=”people_list”> {{#each people}} <li>{{this}}</li> {{/each}} </ul> when used with this context: … Read more