Skip to content

Instantly share code, notes, and snippets.

@mityukov
Created February 16, 2016 10:50
Show Gist options
  • Save mityukov/8b2765b29f778ff012b6 to your computer and use it in GitHub Desktop.
Save mityukov/8b2765b29f778ff012b6 to your computer and use it in GitHub Desktop.
Check string has any of array's values in it
function substr_in_array(arr, str)
{
return arr.some( function(v) { return str.indexOf(v) >= 0; } );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment