Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript 함수를 객체로 어떻게 사용할 수 있습니까?


JavaScript 기능을 개체로 사용하려면 다음 코드를 실행해 보세요. -

예시

<html>
   <head>
      <title>User-defined objects</title>
      <script>
         function book(title, author){
            this.title = title;
            this.author = author;
         }
      </script>
   </head>
   <body>
      <script>
         var myBook = new book("Amit", "Python");
         document.write("Book title is : " + myBook.title + "<br>");
         document.write("Book author is : " + myBook.author + "<br>");
      </script>
   </body>
</html>