Skip to content

Instantly share code, notes, and snippets.

@mfunkie
Created January 5, 2015 02:33
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 mfunkie/1efbfa3d570c83defab8 to your computer and use it in GitHub Desktop.
Save mfunkie/1efbfa3d570c83defab8 to your computer and use it in GitHub Desktop.
I hate myself for this
var items = [1, 2, 3, 4];
switch (true) {
case 2 === items.filter(function(item) { return item > 2; }).length:
console.log('Two items greater than two');
break;
default:
console.log('Not exactly two items greater than two');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment