<html> <head> <title>Switch Statement Demo</title> <script language="javascript" type="text/javascript"> <!-- switch (1+1){ case "a": alert(1); case 2: alert(2); case true: alert(3); } //--> </script> </head> <body> <h1>Switch Statement Demo</h1> </body> </html>