Switch with boolean value : Switch « Statement « JavaScript Tutorial






<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
var yourchoice;
yourchoice = confirm("Are you at your computer now?")
switch (yourchoice)
{
    case true:
        alert("true");
        break;
    case false:
        alert("false");
        break;
}
//  -->
</script>
</head>
<body>

</body>
</html>








3.5.Switch
3.5.1.Using the switch Structure
3.5.2.Use switch statement to deal with form input value
3.5.3.Switch statement with return value from a prompt dialog
3.5.4.Switch statement with default value
3.5.5.Switch with boolean value
3.5.6.Switch Statement with Integer as the control variable
3.5.7.Switch Statement with calculation