| JS Switch |
|
Conditional statements in JavaScript are used to perform different actions based on different conditions. The JavaScript Switch StatementYou should use the switch statement if you want to select one of many blocks of code to be executed. Syntax switch(n) This is how it works: First we have a single appearance n (most often a variable), that is evaluated once. The value of the expression is then compared with the values for each case in the structure. If there is a match, the block of code associated with that case is executed. Use break to avert the code from running into the next case automatically. Example<script type="text/javascript"> Examples Switch statement |
|
| Last Updated ( Monday, 17 March 2008 ) |