जावास्क्रिप्ट लागू () विधि कॉल () विधि के समान है, लेकिन यह फ़ंक्शन मापदंडों को एक सरणी के रूप में मानता है। आप निम्न कोड को चलाने का प्रयास कर सकते हैं जावास्क्रिप्ट में लागू () विधि को लागू करना सीखें -
उदाहरण
<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