Để truy cập thuộc tính của một mảng đối tượng, bạn có thể thử chạy đoạn mã sau -
Ví dụ
<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("PHP", "Amit"); book.prototype.price = null; myBook.price = 250; document.write("Book title is : " + myBook.title + "<br>"); document.write("Book author is : " + myBook.author + "<br>"); document.write("Book price is : " + myBook.price + "<br>"); </script> </body> </html>
Đầu ra
Book title is : PHP Book author is : Amit Book price is : 250