Handlebars:
Template
{{#each people as |person|}}
  {{#> childEntry}}
    {{person.firstname}}
  {{/childEntry}}
{{/each}}
Preparation-Script
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
Input
{
  people: [
    { firstname: "Nils" },
    { firstname: "Yehuda" },
    { firstname: "Carl" },
  ],
}
Output
    Nils
    Yehuda
    Carl
Last Updated: 2/25/2020, 4:23:24 PM