What if the order depended on the check condition? `if (null == variable) or if (false == variable)` reads well that you are checking for null/false. `if (variable != null) or if (variable != false)` reads well that you…
What if the order depended on the check condition? `if (null == variable) or if (false == variable)` reads well that you are checking for null/false. `if (variable != null) or if (variable != false)` reads well that you…