How to find all non repeating characters in a string with JavaScript

1 Answer

0 votes
function PrintAllNonRepeatedCharacter(str) {
    for (let i = 0; i < str.length; i++) {
        if (str.indexOf(str.charAt(i)) == str.lastIndexOf(str.charAt(i))) {
            console.log(str.charAt(i));
        }
    }
    return ' ';
}
 
 
const str = "c c++ csharp javascript php python";
 
 
PrintAllNonRepeatedCharacter(str);
 
 
 
   
   
/*
run:
   
"j"
"v"
"i"
"y"
"o"
"n"
   
*/

 



answered Sep 5, 2022 by avibootz

Related questions

1 answer 120 views
1 answer 133 views
1 answer 144 views
1 answer 127 views
1 answer 144 views
1 answer 116 views
...