if (condition) {
statements;
} else if (anotherCondition) {
statements;
} else {
statements;
}
for (let i = 0; i < items.length; i++) {
statements;
}
while (condition) {
statements;
} if (condition) {
statements;
} else if (anotherCondition) {
statements;
} else {
statements;
}
for (let i = 0; i < items.length; i++) {
statements;
}
while (condition) {
statements;
}