values present in 1 array should be present in another array javascript code example
Example 1: javascript check if elements of one array are in another
const found = arr1.some(r=> arr2.includes(r))
Example 2: find new values in array based on another array apps script
const ObjectOfKeys = keys.reduce((acc,rec)=> {
let nextAcc = acc;
nextAcc[rec] = true;
return nextAcc;
},{});
const filteredData = data.filter(rec => !ObjectKeys[rec[0]])