Statements

Обновлено: 09.03.2023

JavaScript Statements

У HTML JavaScript statements — це «інструкції», які має «виконати» веб-браузер.

Ця інструкція повідомляє браузеру написати «Hello Dolly» всередині елемента HTML з id="demo":

document.getElementById("demo").innerHTML = "Hello Dolly.";

Ідентифікатори операторів JavaScript

Оператори JavaScript часто починаються з ідентифікатора оператора , щоб ідентифікувати дію JavaScript, яку потрібно виконати.

Ідентифікатори операторів є зарезервованими словами і не можуть використовуватися як імена змінних (або будь-які інші речі).

У наведеній нижче таблиці перераховано всі ідентифікатори операторів JavaScript:

  • break

    break

    Exits a switch or a loop

  • class

    class

    Declares a class

  • const

    const

    Declares a variable with a constant value

  • continue

    continue

    Breaks one iteration (in the loop) if a specified condition occurs, and continues with the next iteration in the loop

  • debugger

    debugger

    Stops the execution of JavaScript, and calls (if available) the debugging function

  • do ... while

    do ... while

    Executes a block of statements and repeats the block while a condition is true

  • for

    for

    Loops through a block of code a number of times

  • for ... in

    for ... in

    Loops through the properties of an object

  • for ... of

    for ... of

    Loops through the values of an iterable object

  • function

    function

    Declares a function

  • if ... else

    if ... else

    Marks a block of statements to be executed depending on a condition

  • let

    let

    Declares a variable

  • return

    return

    Stops the execution of a function and returns a value from that function

  • switch

    switch

    Marks a block of statements to be executed depending on different cases

  • throw

    throw

    Throws (generates) an error

  • try ... catch ... finally

    try ... catch ... finally

    Marks the block of statements to be executed when an error occurs in a try block, and implements error handling

  • var

    var

    Declares a variable

  • while

    while

    Marks a block of statements to be executed while a condition is true