check if an array contains any element of another array in javascript code example
Example 1: angular one array contains any of second
const found = arr1.some(r=> arr2.includes(r))
Example 2: see if array contains array javascript
const found = arr1.some(r=> arr2.indexOf(r) >= 0)