Skip to content

Instantly share code, notes, and snippets.

@marceloxp
Created July 23, 2013 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marceloxp/6066323 to your computer and use it in GitHub Desktop.
Save marceloxp/6066323 to your computer and use it in GitHub Desktop.
JavaScript switch
switch (expression)
{
case label1:
statements1
break;
case label2:
statements2
break;
default:
statements_def
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment