什么是JavaScript apply()方法?
本文向大家介绍什么是JavaScript apply()方法?,包括了什么是JavaScript apply()方法?的使用技巧和注意事项,需要的朋友参考一下
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