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>