Heim > Fragen und Antworten > Hauptteil
a=[10,20,30]
alert(Math.max(10,20,30))
alert(Math.max.apply(null,a))
可以理解这里为什么要用apply,是为了让math.max可以处理数组,但是不能理解Null是什么意思?
高洛峰2017-04-11 13:14:34
null在那里只是占了个位置,
Math.max.apply(a,a)
30
Math.max.apply(999,a)
30
a
[10, 20, 30]