Skip to content

Instantly share code, notes, and snippets.

@psiborg
Created January 6, 2012 08:26
Show Gist options
  • Select an option

  • Save psiborg/1569682 to your computer and use it in GitHub Desktop.

Select an option

Save psiborg/1569682 to your computer and use it in GitHub Desktop.
JS Switch Block
switch (letter) {
case "a":
case "e":
case "i":
case "o":
case "u":
// is a vowel
break;
case "y":
// is sometimes a vowel
break;
default:
// is not a vowel
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment