Looking for a way to access to achieve this:
{{#each someArray}}
{{../otherObject.[this]}}
{{/each}}
How do I evaluate the value of this and then reference it as a key to my object otherObject?
With lookup: https://handlebarsjs.com/guide/builtin-helpers.html#lookup
{{#each someArray}}
{{lookup ../otherObject this}}
{{/each}}
{{value_at obj key}}to the JavaScriptobj[key].