You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
357 B

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script type="text/javascript">
var girl = "ashley";
switch(girl){
case "natalie":
document.write("you must liek garden state");
break;
case "ashley":
document.write("oo fan of twilight ey?");
break;
default:
document.write("thisd is the default");
}
</script>
</body>
</html>