프로토타입 속성은 모든 객체(숫자, 부울, 문자열 및 날짜 등)에 속성과 메서드를 추가할 수 있습니다.
참고: 프로토타입은 거의 모든 개체에 사용할 수 있는 전역 속성입니다.
문법
object.prototype.name = value
예:
다음은 프로토타입 속성을 사용하여 객체에 속성을 추가하는 방법을 보여주는 예입니다.
<html> <head> <title>User-defined objects</title> <script type="text/javascript"> function book(title, author){ this.title = title; this.author = author; } </script> </head> <body> <script type="text/javascript"> var myBook = new book("Perl", "Mohtashim"); book.prototype.price = null; myBook.price = 100; 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>
이렇게 하면 다음과 같은 결과가 나타납니다.
Book title is : Perl Book author is : Mohtashim Book price is : 100