1. 程式人生 > >js簡單對象List自定義屬性排序

js簡單對象List自定義屬性排序

urn cnblogs color bject ray asc obj var pre

簡單對象List自定義屬性排序
    <script type="text/javascript">
        var objectList = new Array();
        function Persion(name,age){
            this.name=name;
            this.age=age;
            }
        objectList.push(new Persion(‘jack‘,20));
        objectList.push(new Persion(‘tony‘,25));
        objectList.push(
new Persion(‘stone‘,26)); objectList.push(new Persion(‘mandy‘,23)); //按年齡從小到大排序 objectList.sort(function(a,b){ return a.age-b.age}); //按年齡從大到小排序 objectList.sort(function(a,b){ return b.age-a.age}); </script>

js簡單對象List自定義屬性排序