Answers for "how to check this element are in another array javascript"

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

javascript check if array is subset of another

let superSet = ['B', 'C', 'A', 'D'];
let subSet = ['D', 'C'];
let mixedSet = new Set([...superSet, ...subSet]);
let isSubset = mixedSet.size == superSet.length
Posted by: Guest on January-18-2021

Code answers related to "how to check this element are in another array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language