ホームページ  >  記事  >  ウェブフロントエンド  >  JavaScript で関数リテラルとは何を意味しますか?

JavaScript で関数リテラルとは何を意味しますか?

WBOY
WBOY転載
2023-09-05 12:17:041237ブラウズ

JavaScript で関数リテラルとは何を意味しますか?

関数リテラルは、名前のない関数を定義する式です。次のコードを実行して、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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。