美文网首页
js根据对象的深层属性给数组排序

js根据对象的深层属性给数组排序

作者: 牛奶大泡芙 | 来源:发表于2019-01-03 13:13 被阅读0次
    const compareDown = (property, child) => (a,b) => (b[property][child] - a[property][child]);
    dataList.sort(compareDown('overall', 'value'));
    

    相关文章

      网友评论

          本文标题:js根据对象的深层属性给数组排序

          本文链接:https://www.haomeiwen.com/subject/xgsfrqtx.html