In this article we will discuss implementing switch statement. The switch statement is used to perform different actions based on different condition. In order to improve the readability of a program multiple if else statements can be replaced with a switch statement.
Syntax:
switch(expression) {
case n:
// code block
break;
case n:
// code block
break;
default:
default // code block
}
Example:
<script type="text/javascript">
var input = Number(prompt("Please enter a number", ""));
switch (input)
{
case 1:
alert("You have entered One");
break;
case 2:
alert("You have entered Two");
break;
case 3:
alert("You have entered Three");
break;
default:
alert("Your have to enter number between 1 and 3");
break;
}
</script>
Output:
Post your comments / questions
Recent Article
- How to enable Search Feature in Django admin?
- How to check PAN-Aadhaar is Linked or NOT?
- How to customize pagination for django admin?
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
Related Article