编辑代码

// Math 对象
// Math对象没有 prototype 原型
let arr = [3, 54, 32, 16]

let max = Math.max(...arr)

console.log(max)

let max1 = Math.max.apply(Math, arr)

console.log(max1)