0
16
llucycodes42
The code if (cond) { } else { triggers if the condition is true. If it is, the code block is executed. If it is false, the code block is skipped.
Shortcut: ifelse
if (cond) {
} else {
}
0
16
llucycodes42
The code if (cond) { } else { triggers if the condition is true. If it is, the code block is executed. If it is false, the code block is skipped.
Shortcut: ifelse
if (cond) {
} else {
}