js中Math.max()求取数组中最大值
Posted 灭世的蜜糖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中Math.max()求取数组中最大值相关的知识,希望对你有一定的参考价值。
let arr = [3,2,4,1,8,6] let maxValue = Math.max.apply(null,arr); console.log(maxValue);
PS: Math.max()中的参数不可以传数组
以上是关于js中Math.max()求取数组中最大值的主要内容,如果未能解决你的问题,请参考以下文章
返回数组中的最大值,var arr = [2, 4, 6, 8, 5, 0]; alert(Math.max.apply(this, arr));