1.使用Math.max 或者配合apply (apply是Function.prototype.apply(),apply函数原型上的方法)
Math.max(1, 3, 2) // 3
const array1 = [1, 3, 2]; Math.max(...array1) // 3
使用 apply
方法寻找一个数值数组中的最大元素
const numbers = [5, 6, 2, 3, 7]; const max = Math.max.apply(null, numbers); console.log(max); // 7
封装方法:
function getMaxOfArray(numArray) { return Math.max.apply(null, numArray); } const arr = [5,3,6,2,4]
getMaxOfArray(arr) //6