0
0
llucycodes42
This code is a conditional statement. The if statement tests a condition, and if it is true, the code inside the curly braces is executed. If the condition is false, the code inside the curly braces is not executed, and the else statement is executed.
Shortcut: ie
if condition {
} else {
}