Math.max.apply(null, 数组)
var a = [1, 2, 3, 5]; alert(Math.max.apply(null, a)); //最大值 alert(Math.min.apply(null, a)); //最小值
1