显示数组中最小数字的索引的 JavaScript


我们需要编写一个 JavaScript 函数,该函数接收一个数字数组。然后,该函数应返回数组中最小数字的索引。

示例

以下代码实现上述功能 −

const arr = [3, 56, 56, 23, 7, 76, -2, 345, 45, 76, 3];
const lowestIndex = arr => {
   const creds = arr.reduce((acc, val, ind) => {
      let { num, index } = acc;
      if(val < num){
         num = val;
         index = ind;
      };
      return { num, index };
   }, {
      num: Infinity,
      index: -1
   });
   return creds.index;
};
console.log(lowestIndex(arr));

输出

以下为在控制台中输出的代码 −

6

更新于: 2020 年 10 月 12 日

115 次观看

开启你的 职业

完成课程后获得认证

立即开始
广告