1 回答
慕虎7371278
TA贡献1802条经验 获得超4个赞
function max(arr, key = 'total') {
if (!Array.isArray(arr) && !arr.length) {
return -1;
}
let index = 0,
max = arr[0][key];
arr.forEach((item, i) => {
let temp = item[key];
if (max < temp) {
max = temp;
index = i;
}
});
return index;
}
添加回答
举报
0/150
提交
取消