Bootstrap

JS实现数组排序

const newArr = result.data.sort(function(a, b) {
     return a.ct - b.ct;
});
console.log("排序后的新数组", newArr);

以ct为标准,a到b从大到小,b到a反之

;