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,894 questions

51,825 answers

573 users

How to find and print the common characters (letters) in different strings with JavaScript

2 Answers

0 votes
function getCommonCharacters(str1, str2) {
    let strcommon = "";
    
    for (let i in str1) {
        if (str2.includes(str1[i])) {
            if (! strcommon.includes(str1[i])) {
                strcommon += str1[i];
            }
        }
    }
    
    return strcommon;
}

const str1 = "c c++ c# java go";
const str2 = "python nodejs php javascript";

let strcommon = getCommonCharacters(str1, str2);

console.log("Same letters are: " + strcommon);



 
/*
run:
  
Same letters are: c javo
  
*/

 



answered Jan 26, 2024 by avibootz
edited Jan 27, 2024 by avibootz
0 votes
function getCommonCharacters(str1, str2) {
    let set1 = new Set(str1);
    let set2 = new Set(str2);
    
    let strcommon = new Set([...set1].filter(x => set2.has(x)));
     
    return [...strcommon].join('');;
}
 
const str1 = "c c++ c# java go";
const str2 = "python nodejs php javascript";
 
let strcommon = getCommonCharacters(str1, str2);
 
console.log("Same letters are: " + strcommon);
 
 
 
  
/*
run:
   
Same letters are: c javo
   
*/

 



answered Jan 27, 2024 by avibootz
...