12: Condition
If Else Keyword (Condition)
if (condition) {
// execute this code if condition is true
} else {
// execute this code if condition is false
}uint age = 21;
if (age < 18) {
// execute this code if age is less than 18
} else {
// execute this code if age is greater than or equal to 18
}Short If
Last updated