Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,866 questions

51,788 answers

573 users

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

3 Answers

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

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

 



answered Jul 13, 2022 by avibootz
0 votes
const arr1 = [22, 26, 12, 19, 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, 12, 19, 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
...