unlogical chaining of conditions:
if(!conditionOne && !conditionTwo) {
// some other code
// and the down somewhere down the road:
if(conditionTwo) //...
}
unlogical chaining of conditions:
if(!conditionOne && !conditionTwo) {
// some other code
// and the down somewhere down the road:
if(conditionTwo) //...
}