Is it possible to use compound if statements in an ejs template:
<% if(this.thing == 'winner' || that.thing == 'winner') { %>
I know you can use if statements in ejs. I am specifically looking for an example of compound
if statements which cannot be used in all js templating schemes.