jquery / javascript中的自定义排序方法 [英] custom sort method in jquery/javascript

查看:72
本文介绍了jquery / javascript中的自定义排序方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想以自定义方式对数组进行排序

I want to sort a Array in custom way

给出以下内容:

arry = [0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,21,21,22,22,23,23]

预期产出:

[21,22,22,23,23,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18]


推荐答案

您可以先检查数值,排序数大于 20 首先。

You could check the value first and the sort number greater than 20 first.

var array = [0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 21, 21, 22, 22, 23, 23],
    predicate = function (v) { return v > 20; };

array.sort(function(a, b) {
    return predicate(b) - predicate(a) || a - b;
});

console.log(array);

这篇关于jquery / javascript中的自定义排序方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆