The following if clause checks if the variable "name" exist.
{{#each categories}}
{{#if name}}name exists.{{/if}}
{{/each}}
Is there any way that i could use the expression as follows to see if the value is equal to some text
{{#if name equals "John"}} Hello John.{{/if}}
[OR]
{{#if name = "John"}} Hello John.{{/if}}
Also is there a page where i can get information about which object is available for which page and details about the expression language in the help center custom design.



