在JavaScript中查找以特定字母开头的单词

我们需要编写一个JavaScript函数,该函数将字符串文字数组作为第一个参数,并将单个字符串字符作为第二个参数。

然后,我们的函数应该找到并返回以第二个参数指定的字符开头的第一个数组条目。

示例

为此的代码将是-

const names = ['Naman', 'Kartik', 'Anmol', 'Rajat', 'Keshav', 'Harsh', 'Suresh', 'Rahul'];

const firstIndexOf = (arr = [], char = '') => {

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

      const el = arr[i];

      if(el.substring(0, 1) === char){

         return i;

      };

   };

   return -1;

};

console.log(firstIndexOf(names, 'K'));

console.log(firstIndexOf(names, 'R'));

console.log(firstIndexOf(names, 'J'));

输出结果

控制台中的输出将是-

1

3

-1

以上是 在JavaScript中查找以特定字母开头的单词 的全部内容, 来源链接: utcz.com/z/356787.html

回到顶部