Skip to content

Instantly share code, notes, and snippets.

@tpowell
Created October 30, 2012 01:07
Show Gist options
  • Save tpowell/3977710 to your computer and use it in GitHub Desktop.
Save tpowell/3977710 to your computer and use it in GitHub Desktop.
Quiz 2 - Ex 3
var stooge = "Moe";
switch (stooge) {
case "Moe" : document.write("Why I outta...");
break;
case "Larry" : document.write("Hey Moe");
break;
case "Curly" : document.write("Woo woo woo!");
break;
default : document.write("You must be Shemp...");
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment