About the author


Author: https://t.me/ahillary

Resources


Channel: https://t.me/semolina_code_python

Chat: https://t.me/python_with_ahillary

YouTube: https://www.youtube.com/@semolinacode

Coding training: https://t.me/how_to_code_web3

Prop trading: https://t.me/semolina_prop


Содержание

Синтаксис

Конструкция switch заменяет собой сразу несколько if.

let x: string = 'value1';

switch(x) {
    case 'value1':  // if (x === 'value1')
        console.log(1);
        break;
  
    case 'value2':  // if (x === 'value2')
        console.log(2);
        break;
  
    default:
        console.log(3);
        break;
}

switch без break