方法一:es6 + forEach
let arr = [5,1,89,12]; let max = Ma(...arr);//得到最大值,es6扩展运算符 con(max)
let arrIndex = 0; arr.forEach((item,index)=>{ if(item == max){ arrIndex = index; //遍历数据,判断得到索引。 } }) con(arrIndex);
方法二:forEach
let arr = [5,1,89,12,100]; let max = arr[0]; let maxIndex = 0; arr.forEach((item,index)=>{ if(max < item){ max = item; maxIndex = index; } return max,maxIndex }) con(max,maxIndex); // 100 4