Skip to content

Instantly share code, notes, and snippets.

@jaredrada
Last active December 16, 2015 05:39
Show Gist options
  • Select an option

  • Save jaredrada/5385615 to your computer and use it in GitHub Desktop.

Select an option

Save jaredrada/5385615 to your computer and use it in GitHub Desktop.
A typical Javascript switch statement.
var manufacturer;
switch ( device ) {
case 'iPhone':
manufacturer = 'Apple';
break;
case 'Windows 8':
manufacturer = 'Microsoft';
break;
case 'Chrome':
manufacturer = 'Google';
break;
default:
manufacturer = 'Unknown manufacturer';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment