原生Math.max方法 Math.max 方法不能接收数组,可以使用ES6的...将数组打散 const arr = [111, 12, 111, 34, 2, 5, 76]; console.log(Math.max(...arr)); 当然也可以用apply方法调用 console.log(Math.max.apply(null, arr)); 遍历获取最大值 遍历数组,依次比较,保存较大的数,最终得到的就是最大值,这里使用forEach遍历 function max2(arr) { le