javascript找出数组中的最大值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript找出数组中的最大值相关的知识,希望对你有一定的参考价值。

  1. 代码:
    Array.prototype.max = function(){
    var max = 0
    for(var i=0;i<this.length;i++){
        if(max<this[i]){
            max = this[i]
        }
    }
    return max
    }
  2. 测试:
    var arr = [1,2,5,3,2,4]
    console.log(arr.max())
  3. 输出:
    5

以上是关于javascript找出数组中的最大值的主要内容,如果未能解决你的问题,请参考以下文章

javascript 找出数字数组中最大的数

JAVA用迭代的思想,不遍历,找出数组中的最大值

用C#找出数组中的最大值和最小值

18个常用的JavaScript片段分享

找出数组中所有组合中最大的值

JavaScript 代码片段