if(a && b) { do something; }
is there any possibility to evaluate arguments from right to left(b -> a)?
if \"yes\", what influenc
In this case, since you're using &&, a will always be evaluated first because the result is used to determine whether or not to short-circuit the expression.
&&
a
If a returns false, then b is not allowed to evaluate at all.
b