找出一个正整数数组的最大差值。如输入:[1, 2, 3, 4, 5, 6, 7, 8, 9],输出:8
皮皮M:OK
// Math.max(x...) Math.min(x...)
// x:0或多个值。
let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]
let max = Math.max(1, 2, 3, 4, 5, 6, 7, 8, 9)
let min = Math.min(1, 2, 3, 4, 5, 6, 7, 8, 9)
let m = max - min // 8
// B.apply(A, arguments) A对象应用B对象的方法
let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]
let max = Math.max.apply(null, arr)
let min = Math.min.apply(null, arr)
let m = max - min // 8
2018/05/06