Skip to content

Instantly share code, notes, and snippets.

@frentsel
Last active August 29, 2015 14:26
Show Gist options
  • Save frentsel/a5d1613232c58d9e8e5e to your computer and use it in GitHub Desktop.
Save frentsel/a5d1613232c58d9e8e5e to your computer and use it in GitHub Desktop.
RegExp in Switch-Case
var age = 'think';
switch (true) {
case (/think/g).test(age):
console.log("Think!");
break;
default:
console.log("not found");
break;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment