为了账号安全,请及时绑定邮箱和手机立即绑定

想求数组中对象中的total值最大的对象在数组的下标,怎么写地道点

想求数组中对象中的total值最大的对象在数组的下标,怎么写地道点

慕码人2483693 2018-12-11 11:19:28
查看完整描述

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;

}


查看完整回答
反对 回复 2019-01-11
  • 1 回答
  • 0 关注
  • 498 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信