使用 JavaScript 在数组中返回等于其索引的第一个数字

问题

我们需要编写一个接受数字数组的 JavaScript 函数。我们的函数应该返回数组中的第一个数字,其值和从 0 开始的索引相同,因为数组中至少存在一个这样的数字。

示例

以下是代码 -

const arr = [9, 2, 1, 3, 6, 5];

const findFirstSimilar = (arr = []) => {

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

      const el = arr[i];

      if(el === i){

         return i;

      };

   };

};

console.log(findFirstSimilar(arr));

输出结果
3

以上是 使用 JavaScript 在数组中返回等于其索引的第一个数字 的全部内容, 来源链接: utcz.com/z/322790.html

回到顶部