使用 JavaScript 检查字符串是否包含所有唯一字符

问题

我们需要编写一个 JavaScript 函数,它接受一个字符串,如果字符串中的所有字符只出现一次,则返回 true,否则返回 false。

示例

以下是代码 -

const str = 'thisconaluqe';

const allUnique = (str = '') => {

   for(let i = 0; i < str.length; i++){

      const el = str[i];

      if(str.indexOf(el) !== str.lastIndexOf(el)){

         return false;

      };

   };

   return true;

};

console.log(allUnique(str));

输出结果
true

以上是 使用 JavaScript 检查字符串是否包含所有唯一字符 的全部内容, 来源链接: utcz.com/z/335572.html

回到顶部