एक JavaScript फ़ंक्शन को फ़ंक्शन के रूप में लागू करने के लिए, इसे सामान्य कस्टम JavaScript फ़ंक्शन की तरह कॉल करें।
उदाहरण
जावास्क्रिप्ट फ़ंक्शन को फ़ंक्शन के रूप में कॉल करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<html> <head> <script> function Display() { document.write ("Hello World!"); } </script> </head> <body> <p>Click the following button to call the function</p> <form> <input type = "button" onclick = "Display()" value = "Display"> </form> </body> </html>