JavaScript 獲取數組中最大值、最小值

笨方法

Array.prototype.max = function() {  
    var max = this[0];
    var len = this.length; 
    for (var i = 1; i < len; i++){   
    if (this[i] > max) {      
            max = this[i];   
        } 
    }   
    return max;
}
Array.prototype.min = function() {
    var min = this[0];
    var len = this.length;
    for (var i = 1; i < len; i++){ 
    if (this[i] < min){     
            min = this[i];   
        }  
    }   
    return min;
}

 

巧方法

巧妙地利用apply方法來調用原生的Math.max與Math.min方法迅速求得結果。apply能讓一個方法指定調用對象與傳入參數,而且傳入參數是以數組形式組織的。偏偏如今有一個方法叫Math.max,調用對象爲Math,與多個參數。html

Array.max = function( array ){   
    return Math.max.apply( Math, array );
};
  
Array.min = function( array ){    
    return Math.min.apply( Math, array );
};

 

不過,John Resig是把它們作成Math對象的靜態方法,不能使用大神最愛用的鏈式調用了。但這方法還能更精簡一些,不要忘記,Math對象也是一個對象,咱們用對象的字面量來寫,又能夠省幾個比特了。數組

Array.prototype.max = function(){  
   return Math.max.apply({},this);
}
Array.prototype.min = function(){  
   return Math.min.apply({},this);
}

 

原文章:http://erhuabushuo.is-programmer.com/posts/32298.htmlapp

相關文章
相關標籤/搜索