标签: javascript
我可以在Javascript中理解apply函数。但我无法了解Math.max.apply(null,[arrayArg])的工作方式。
apply
Math.max.apply(null,[arrayArg])
定义说apply calls the function for the given这个value。此处,null作为thisArg传递。本地Array构造函数不是作为thisArg作为参数传递的,因为Array构造函数不具有从给定参数中查找最大/最小数的函数吗?
apply calls the function for the given
value
null
thisArg
Array