함수 리터럴은 이름이 지정되지 않은 함수를 정의하는 표현식입니다. 다음 코드를 실행하여 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!