Handlebars:
Template
{{#each people}}
    {{#if creator}}
        {{../prefix}} {{firstname}}
    {{/if}} 
{{/each}}
Preparation-Script
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
Input
{
  people: [
    { firstname: "Nils" },
    {
      firstname: "Yehuda",
      creator: true,
    },
  ],
  prefix: "Hello",
}
Output
        Hello Yehuda
Last Updated: 8/1/2019, 7:57:01 PM