JavaScript 1.2 फंक्शन लिटरल की अवधारणा का परिचय देता है, जो कि फंक्शन्स को परिभाषित करने का एक और नया तरीका है। एक फ़ंक्शन शाब्दिक एक अभिव्यक्ति है जो एक अनाम फ़ंक्शन को परिभाषित करता है।
उदाहरण
जावास्क्रिप्ट में कार्यात्मक शाब्दिकों को लागू करने के लिए आप निम्न उदाहरण को आजमा सकते हैं
लाइव डेमो
<html> <head> <script> <!-- var func = function(x,y){ return x*y }; function secondFunction(){ var result; result = func(10,20); document.write ( result ); } //--> </script> </head> <body> <p>Click the following button to call the function</p> <form> <input type="button" onclick="secondFunction()" value="Call Function"> </form> <p>Use different parameters inside the function and then try...</p> </body> </html>