Switch Case Statement
Switch Case Statement The JavaScript switch...case statement executes different blocks of code based on the value of a given expression. The switch statement is used to perform different actions based on different conditions. 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. The value of the expression is compared with the values of each case. If there is a match, the associated block of code is executed. If there is no match, the default code block is executed. The break Keyword When JavaScript reaches a break keyword, it breaks out of the switch block. This will stop the execution inside the switch block. EXAMPLE: < script > ...