🔀if
🚧 under construction
if (condition) statement // one-way branch
if (condition) statement1 else statement2 // two-way branchif (expr1) statement1 // not this one
if (expr2) statement2 // ... is part of this if statement
else statement3 // else clause ...Last updated