Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created August 29, 2014 17:18
Show Gist options
  • Save rafaelrinaldi/42261b659c4240f5ca86 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/42261b659c4240f5ca86 to your computer and use it in GitHub Desktop.
var arr = ['foo', 'bar'];
function has(value) {
return arr.indexOf(value) >= 0;
}
has('foo'); // true
has('bar'); // true
has('baz'); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment