配列の最大値を求める6つの方法

1184 ワード

var arr=[1,231,33,9999,9339,1011]行列の最大値を求めます.
6つの方法をまとめました.並べ替えは泡が出ているものを代表として選んでいます.
 
 1 Array.prototype.getMax1=function(){
 2     return this.sort(function(a,b){
 3         return a-b
 4     })[this.length-1]-0
 5 }
 6 Array.prototype.getMax2=function(){
 7     var len=this.length;
 8     for(var i=0; ithis[j+1]){
11                 var temp=this[j];
12                 this[j]=this[j+1];
13                 this[j+1]=temp;
14             }
15         }
16     }
17     return this[this.length-1]-0
18 }
19 Array.prototype.getMax3=function(){
20     var num=0;
21     for(var i=0; inum){
23             num=this[i];
24         }
25     }
26     return num
27 }
28 Array.prototype.getMax4=function(){
29     return this.reduce(function(init,item){
30         if(init>=item){
31             init=init
32         }else{
33             init=item
34         }
35         return init
36     })
37 }
38 Array.prototype.getMax5=function(){
39     return Math.max.apply(null,this)
40 }
41 Array.prototype.getMax6=function(){
42     return Math.max(...this)
43 }