How to determine if a string has all unique characters in Node.js

1 Answer

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

 



answered May 7, 2022 by avibootz

Related questions

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