Skip to content

Instantly share code, notes, and snippets.

@bultas
Created July 18, 2014 16:47
Show Gist options
  • Save bultas/7f9abb373e1f2eadcbd6 to your computer and use it in GitHub Desktop.
Save bultas/7f9abb373e1f2eadcbd6 to your computer and use it in GitHub Desktop.
Array contains string (true, false)
function arrayContains(array, string) {
return array.indexOf(string) > -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment