How to determine if a string has all unique characters in JavaScript

1 Answer

0 votes
const str = 'javascript typescript node.js c++';
 
const result = new Set(str).size == str.length;
 
console.log(result ? "yes" : "no"); 
   
   
   
   
   
/*
run:
   
"no"
   
*/

 



answered May 7, 2022 by avibootz

Related questions

1 answer 130 views
1 answer 127 views
1 answer 148 views
1 answer 119 views
1 answer 120 views
1 answer 104 views
...