Objet JavaScript - prototype
La description
La propriété prototype vous permet d'ajouter des propriétés et des méthodes à n'importe quel objet (nombre, booléen, chaîne et date, etc.).
Note - Le prototype est une propriété globale disponible avec presque tous les objets.
Syntaxe
Sa syntaxe est la suivante -
object.prototype.name = value
Exemple
Essayez l'exemple suivant.
<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>
Production
Book title is : Perl
Book author is : Mohtashim
Book price is : 100