var points = [40, 100, 1, 5, 25, 10];
points.sort(function (a, b) {
return b - a
});
aijs 数组排序
最新推荐文章于 2023-08-09 09:12:02 发布
var points = [40, 100, 1, 5, 25, 10];
points.sort(function (a, b) {
return b - a
});