JS - 根据数组中对象的某个属性进行排序

js数组排序大家会想到sort()方法,是的今天我们也是用该方法来实现数组中是对象,根据对象中的某一个属性进行数组的排序。上代码:

let arr = [
        {name: '张三',age: 18},
        {name: '李四',age: 9},
        {name: '王五',age: 28}
    ]
    const handle = (property) => {
        return function(a,b){
            const val1 = a[property];
            const val2 = b[property];
            return val1 - val2;
        }
    }
    arr.sort(handle('age'));

通过处理后,arr的结果为:


222.png

所以就得到了我们想要的顺序。

你可能感兴趣的:(JS - 根据数组中对象的某个属性进行排序)