JavaScript 求数组的最大值和最小值代码

 本文章来介绍JavaScript 求数组的最大值和最小值代码吧,有需要的朋友可参考。

原来Math.min和Math.max可以这么用,代码如下:

function smallest(array){
return Math.min.apply( Math, array );
}
function largest(array){
return Math.max.apply( Math, array );
}
alert(smallest([0, 1, 2, 3]) == 0, "Locate the smallest value.");
alert(largest([0, 1, 2, 3]) == 3, "Locate the largest value.");

Math对象调用Math对象的min方法?不太理解,代码如下:

function smallest(){
return Math.min.apply( Math, arguments );
}
function largest(){
return Math.max.apply( Math, arguments );
}
alert(smallest(0, 1, 2, 3) == 0, "Locate the smallest value.");
alert(largest(0, 1, 2, 3) == 3, "Locate the largest value.");

 
 

扫一扫手机访问