The Only Reason To Use Curly Brackets Blocks For IF-Statements 📎
So either write the IF-statements with curly brackets blocks:if(condition ); doSomething();
if(condition ){
doSomething();
}
...or carefully search for semicolons after the IF-statement.