Answers for "javascript find elements from one array not in another"

9

javascript check if elements of one array are in another

const found = arr1.some(r=> arr2.includes(r))
Posted by: Guest on March-26-2020
0

find new values in array based on another array apps script

// elements to filter out.
const keys = [['a','b','c']],
keySet = new Set(keys[0]),

// example data.
data = [['a',1,2],
        ['c',4,3],
        ['d',3,4]],
out = data.filter(([item0])=>!keySet.has(item0));
console.info(out);
Posted by: Guest on July-05-2020

Code answers related to "javascript find elements from one array not in another"

Code answers related to "Javascript"

Browse Popular Code Answers by Language