一、借助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()将数组掉个文章来源:https://www.toymoban.com/news/detail-509103.html
四、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从小到大文章来源地址https://www.toymoban.com/news/detail-509103.html
到了这里,关于【javascript】js获取数组中数值最大的数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!