Users Pricing

articles

home / developersection / articles / switch statement in java script

Switch statement in Java Script

Anonymous User 6984 10 Mar 2011 Updated 04 Mar 2020

Whenever we have a multiple options and want to select only one option based on condition then we use concept of switch case statement in java. When we want to remove complexity of nested if else statement then also we can use concept of “switch case” statement.

Syntax of switch case statement
switch( value )
{
case 1:
                execute code block 1;
                break;
case 2:
                execute code block 2;
                break;
default:               
                execute when any case does not match.
                break;
}
Following example demonstrate use of switch– case statement
function dayOfWeak() {
            document.write("This example demonstrate use of switch case demo.  <br />");
            var val = 5;
            switch (val) {
                case 1:
                    document.write("Sunday.");
                    break;
                case 2:
                    document.write("Monday");
                    break;
                case 3:
                    document.write("Teusday");
                    break;
                case 4:
                    document.write("Wednesday");
                    break;
                case 5:
                    document.write("Thursday");
                    break;
                case 6:
                    document.write("Friday");
                    break;
                case 7:
                    document.write("Saterday");
                    break;
                default:
                    document.write("Invalid date you have selected.");
                    break;
            }
}
Output of the following code snippet is as follows

Switch statement in Java Script



I am a content writter !


2 Comments