if(a && b) { do something; }
is there any possibility to evaluate arguments from right to left(b -> a)?
if \"yes\", what influenc
It will evaluate from left to right and short-circuit the evaluation if it can (e.g. if a evaluates to false it won't evaluate b).
If you care about the order they are evaluated in you just need to specify them in the desired order of evaluation in your if statement.