Search results
let number = 1; switch (number) { case 1: console.log('1'); break; case 2: console.log('2'); break; case 3: console.log('3'); break; default: console.log('default'); } Kod, który będzie robił to samo co powyższy switch, można zapisać również za pomocą instrukcji warunkowej if:
28 sty 2022 · W instrukcji switch analizujemy wartość i tworzymy warunki do analizowanej wartości. Jeżeli wylosujemy liczbę 1. lub 2 to wydrukujemy odpowiednią informację do konsoli. Jeżeli nie, wykona się instrukcja default, która działa podobnie jak else czyli wykonuje się zawsze, gdy wszystkie inne warunki zawiodły.
Zapis switch (zmienna) możemy przeczytać jako: "przełącz w zależności od wartości zmiennej". Poniżej składnia przykładowego przełącznika: switch (nr_miesiaca) {. case 1: alert("styczeń"); break; case 2: alert("luty");
The JavaScript Switch Statement. Use the switch statement to select one of many code blocks to be executed. Syntax. switch (expression) { case x: // code block. break; case y: // code block. break; default: // code block. } This is how it works: The switch expression is evaluated once.
25 lip 2024 · The switch statement evaluates an expression, matching the expression's value against a series of case clauses, and executes statements after the first case clause with a matching value, until a break statement is encountered.
const nr = 5; switch (true) { case (nr <= 5): console.log("Mało"); break; case (nr > 5 && nr < 10): console.log("Średnio"); break; case (nr >= 10) : console.log("Dużo"); break; } Zastosowanie tego jest niespotykane i traktował bym to jako ciekawostkę.
Use switch to select one of many blocks of code to be executed. This is the perfect solution for long, nested if/else statements. The switch statement evaluates an expression. The value of the expression is then compared with the values of each case in the structure.