0

HTML コード :

<html>
   <head>
   </head>
   <body>
      <script type="text/javascript" src="/js/colorbook.js"></script>
      <script type="text/javascript">
          book.init();
      </script>
   </body>
</html>

JS コード:

var book = (function(){
   init = function(){
   console.log ( "initialized")
   }return init();
}());

質問 : 上記のコードは機能します。しかし、私はどのように理解することができません?. ここで私を助けてくれたり、このコードを理解するためにこのコードのデバッグを開始する方法を教えてくれたりできますか?

4

1 に答える 1