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