In the if statement the current syntax is: if groupedExpression ifBody
i.e
if(a || b){}
I am suggesting we have all kinds of expressions there i.e
if expression ifBody
thus we give room for
if a { // do something }
if a || b { // do something}
This can also be used for if… else if… sections
i.e
if a == b {} else if a <=b {//do something}