码迷,mamicode.com
首页 > 编程语言 > 详细

取得数组中的最大/最小值

时间:2017-04-29 09:43:28      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:apply   最大   同名   code   strong   ++   引入   efi   function   

1、循环遍历数组

var array_1 = new Array(5, 21, 9, 2 ,88, 87, 88);

Array.prototype.max = function(){
  var max_num = this[0];
  var len = this.length;

  for(var i = 0; i < len; i++){
    if(this[i] > max_num){  //求最小值 if(this[i] < min_num)
      max_num = this[i];
    }
  }

  return max_num;
}

console.log(array_1.max());

 

如果引入了相关类库,要注意防止同名函数和变量的污染:

if(typeof Array.prototype[max] == undefined){
  Array.prototype.max = function(){
    var max_num = this[0];
    var len = this.length;

    for(var i = 0; i < len; i++){
      if(this[i] > max_num){
        max_num = this[i];
      }
    }

    return max_num;
  }
}

 

 

2、Math.apply()

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

var array = new Array(2, 5, 98, 298, 78);
p_1.innerHTML = array.max();  //298

 

取得数组中的最大/最小值

标签:apply   最大   同名   code   strong   ++   引入   efi   function   

原文地址:http://www.cnblogs.com/jiaoxuanwen/p/6701892.html

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