函數字面量是定義無名函數的表達式。您可以嘗試執行以下程式碼,在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> </body> </html>#
以上是JavaScript中的函數字面量是什麼意思?的詳細內容。更多資訊請關注PHP中文網其他相關文章!