How To Use Switch Case in Javascript

How To Use Switch Case in Javascript


<html>
<head>
<title> this is my second java script programe
</title>

<script language="javascript" type="text/javascript">

var s=prompt("enter a no ","");

s=parseInt(s);
switch(s)
{
case 1:
document.write("You have to press one ");
break;
case 2:
document.write("you have to press two");
break;
case 3:
document.write("you have to press three");
break;
case 4:
document.write("you have to press four");
break;
default:
document.write("you have to wrong choice");
break;
}

</script>
</head>
<body>
<p>
</p>
</body>
</html>

No comments:

Post a Comment

Thank You For Your Great Contribution

Featured Post

how to find n number of nodes have child or cildren

 how to find n number of nodes have child or cildren for that we use recursive function  const   data = {     'id' : '0' ,...

Popular Posts