javascript apply()
方法与call() 方法
相同,但是将函数参数视为数组。您可以尝试运行以下代码,了解如何在JavaScript中实现apply()
方法-
<html> <head> <script> document.write("The highest number in the array list: "); document.write(Math.max.apply(null,[50,90,18, 87])); document </script> </head> <body> </body> </html>
输出结果
The highest number in the array list: 90