← Каталог
Рекомендации по разработке на JavaScript — Фигурные скобки
Фрагмент из «Рекомендации по разработке на JavaScript»: Фигурные скобки.
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;
}