91-9990449935 0120-4256464 |
JavaScript SwitchThe JavaScript switch statement is used to execute one code from multiple expressions. It is just like else if statement that we have learned in previous page. But it is convenient than if..else..if because it can be used with numbers, characters etc. The signature of JavaScript switch statement is given below. Let’s see the simple example of switch statement in javascript. Test it NowOutput of the above exampleThe switch statement is fall-through i.e. all the cases will be evaluated if you don't use break statement.Let’s understand the behaviour of switch statement in JavaScript. Test it NowOutput of the above example
Next TopicJavascript Loop
|