Код IT
← Каталог

Рекомендации по разработке на JavaScript — Фигурные скобки

Фрагмент из «Рекомендации по разработке на JavaScript»: Фигурные скобки.

javascript javascriptencyclopedia101 embed URL статья в энциклопедии
JavaScript main.js
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;
}