how to check wether element of one array is in other array code example
Example 1: javascript check if elements of one array are in another
const found = arr1.some(r=> arr2.includes(r))
Example 2: if array ontains any item of another array js
const found = arr1.some(r=> arr2.indexOf(r) >= 0)