const numbers = [5, 6, 2, 3, 7];
求 numbers 的最大值 ,解决方案中运用下 apply
注:Math.max(5,6,2,3,7) 默认传参是这样的 不是传一个数组去 而是一个一个的数作为参数
如果不用apply的话可以用解构赋值Math.max([...numbers])
正解:Math.max.apply(null,numbers)
const numbers = [5, 6, 2, 3, 7];
求 numbers 的最大值 ,解决方案中运用下 apply
注:Math.max(5,6,2,3,7) 默认传参是这样的 不是传一个数组去 而是一个一个的数作为参数
如果不用apply的话可以用解构赋值Math.max([...numbers])
正解:Math.max.apply(null,numbers)