JavaScript 1.2 นำเสนอแนวคิดเกี่ยวกับตัวอักษรของฟังก์ชัน ซึ่งเป็นวิธีใหม่ในการกำหนดฟังก์ชัน ฟังก์ชันตามตัวอักษรคือนิพจน์ที่กำหนดฟังก์ชันที่ไม่มีชื่อ
ตัวอย่าง
คุณสามารถลองใช้ตัวอย่างต่อไปนี้เพื่อใช้ฟังก์ชันใน JavaScript
สาธิตสด
<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>