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

javascript找出数组中的最大值

时间:2018-03-30 10:17:04      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:javascript找出数组中的最大值

  • 代码:
    Array.prototype.max = function(){
    var max = 0
    for(var i=0;i<this.length;i++){
        if(max<this[i]){
            max = this[i]
        }
    }
    return max
    }
  • 测试:
    var arr = [1,2,5,3,2,4]
    console.log(arr.max())
  • 输出:
    5
  • javascript找出数组中的最大值

    标签:javascript找出数组中的最大值

    原文地址:http://blog.51cto.com/12173069/2092766

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