Skip to content

Instantly share code, notes, and snippets.

@Osmose
Created June 12, 2019 03:19
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 Osmose/e7f91845d47c7d7b5437d73c8198067e to your computer and use it in GitHub Desktop.
Save Osmose/e7f91845d47c7d7b5437d73c8198067e to your computer and use it in GitHub Desktop.
switch (true) {
case "a".match(/a/): {
console.log("first");
break;
}
default: {
console.log("default");
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment