码迷,mamicode.com
首页 > 其他好文 > 详细

sort()方法的应用(二)

时间:2018-05-02 18:07:22      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:==   else   fun   row   nbsp   amp   type   array   class   

 

引用:函数作为参数

var fn_by = function(id) {
    return function(o, p) {
        var a, b;
        if (typeof o === "object" && typeof p === "object" && o && p) {
            a = o[id];
            b = p[id];
            if (a === b) {
                return 0;
            }
            if (typeof a === typeof b) {
                return a > b ? -1 : 1; //降序使用 “>”, 升序使用“<”
            }
            return typeof a > typeof b ? -1 : 1; //降序使用“>”, 升序使用“<”
        } else {
            throw ("error");
        }
    }
};
arrayObj.sort(fn_by("id"));

 

sort()方法的应用(二)

标签:==   else   fun   row   nbsp   amp   type   array   class   

原文地址:https://www.cnblogs.com/hzsll/p/8981510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!