If Statements
Basic if Statement:
if Statement:if 10 > 5 (
log "10 is bigger than 5!"
)if (10 > 5) {
console.log("10 is bigger than 5!")
}if 10 > 5:
print("10 is bigger than 5!")if else Statements
if condition (
say "command1"
say "command2"
) else (
say "command3"
say "command4"
)else if Statements
Short Forms
Short Form of if Statement:
Short Form of if-else Statement:
Additional Information on Conditional Statements (if):
Examples:
Basic if Statement:
if Statement:if else Statement:
if else Statement:else if Statement:
else if Statement:Last updated