How to check if two arrays contain any common elements in Javascript

3 Answers

0 votes
function containCommonElements(arr1, arr2) { 
    return arr1.some(item => arr2.includes(item)) 
} 
   
const arr1 = [22, 26, 1, 8, 18, 99, 81];
const arr2 = [1, 8, 5, 12, 18, 19, 100, 120];

console.log(containCommonElements(arr1, arr2));
   
   
    
    
/*
run:
    
true
  
*/
 

 



answered Jul 26, 2020 by avibootz
edited Jul 13, 2022 by avibootz
0 votes
const arr1 = [22, 26, 1, 8, 18, 99, 81];
const arr2 = [1, 8, 5, 12, 18, 19, 100, 120];

console.log(arr1.some(element => { return arr2.includes(element); }));
   
   
    
    
/*
run:
    
true
  
*/
 

 

 



answered Jul 13, 2022 by avibootz
0 votes
const arr1 = [22, 26, 1, 8, 18, 99, 81];
const arr2 = [1, 8, 5, 12, 18, 19, 100, 120];

console.log(arr1.some(r=> arr2.indexOf(r) >= 0));
   
   
    
    
/*
run:
    
true
  
*/

 



answered Jul 13, 2022 by avibootz

Related questions

...