How to compare two conditions in a IF block.
Example: Like in Java
if(apple || orange) {
...
}
In hbs: it work for single parameter
{{#if apple}}
how can i compare two parameters in hbs IF block ? I tried to write
{{#if apple || orange}}
but it is not working.