一、借助apply()的参数,获得最大值
let data =[11,22,33,44,55];let max = Math.max.apply(null, data);
console.log(max);// 55
由于max()里面参数不能为数组,所以借助apply(funtion,args)方法调用Math.max(),function为要调用的方法,args是数组对象,当function为null时,默认为上文,即相当于apply(Math.max,arr)
二、借助call()的参数,获得最大值
let arr =[11,22,33,44,55];let max = Math.max.call(null,11,22,33,44,55);
console.log(max);
call()与apply()类似,区别是传入参数的方式不同,apply()参数是一个对象和一个数组类型的对象,call()参数是一个对象和参数列表
三、sort()排序后反转数组reverse(),获取最大值
let arr =[11,22,33,44,55];let max = arr.sort().reverse()[0];
console.log(max);
sort()排序默认为升序,reverse()将数组掉个
四、sort()排序,利用回调返回值反转数组,获取最大值
let arr =[11,22,33,44,55];let max = arr.sort(function(a,b){return b-a;})[0];
console.log(max);
b-a从大到小,a-b从小到大
版权归原作者 hzxOnlineOk 所有, 如有侵权,请联系我们删除。