const arr = [1,2,3,4,5,6] //const max = Math.max(...arr) //可以用扩展运算符,也可以利用apply的特性 const max = Math.max.apply(null, arr)//Math.min 最小值 console.log(max)
最大(小)值
原文:https://www.cnblogs.com/MrZhujl/p/13174508.html