在JavaScript中返回数组中最大值的索引
我们需要编写一个包含数字数组的JavaScript函数。该阵列可以包含一个以上最大元素(即,重复最大元素)。
我们需要编写一个JavaScript函数,该函数接受一个这样的数组并返回最大元素的所有索引。
示例
为此的代码将是-
const arr = [10, 5, 4, 10, 5, 10, 6];const findGreatestIndices = arr => {
const val = Math.max(...arr);
const greatest = arr.reduce((indexes, element, index) => {
if(element === val){
return indexes.concat([index]);
} else {
return indexes;
};
}, []);
return greatest;
}
console.log(findGreatestIndices(arr));
输出结果
控制台中的输出将是-
[ 0, 3, 5 ]
以上是 在JavaScript中返回数组中最大值的索引 的全部内容, 来源链接: utcz.com/z/362045.html