Skip to content

Instantly share code, notes, and snippets.

@say2joe
Created February 13, 2013 22:50
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 say2joe/4949108 to your computer and use it in GitHub Desktop.
Save say2joe/4949108 to your computer and use it in GitHub Desktop.
Use regular expressions in switch statements.
switch (true) {
case (/Chrome/).test(navigator.userAgent):
console.log("You're using Chrome.");
break;
case (/MSIE/).test(navigator.userAgent):
console.log("Unfortunately, you're using Internet Explorer");
break;
default:
console.log("You're using a different kinda browser.");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment