Skip to content

Instantly share code, notes, and snippets.

@Cycymomo
Created February 4, 2014 11:05
Show Gist options
  • Save Cycymomo/8801711 to your computer and use it in GitHub Desktop.
Save Cycymomo/8801711 to your computer and use it in GitHub Desktop.
in_array.js
function in_array(needle, haystack) {
return !!~haystack.indexOf(needle);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment