Untuk menambah sifat dan kaedah pada objek dalam JavaScript, gunakan atribut prototaip.
Anda boleh cuba jalankan kod berikut untuk memahami cara menggunakan prototaip -
<html> <head> <title>JavaScript prototype property</title> <script> function book(title, author) { this.title = title; this.author = author; } </script> </head> <body> <script> var myBook = new book("Amit", "Java"); book.prototype.price = null; myBook.price = 500; 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>
Atas ialah kandungan terperinci Bagaimana untuk menambah sifat dan kaedah pada objek dalam JavaScript?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!