ES6 - Prototipo della proprietà della data
La proprietà prototype consente di aggiungere proprietà e metodi a qualsiasi oggetto (numero, booleano, stringa, data e così via). Nota: il prototipo è una proprietà globale disponibile con quasi tutti gli oggetti.
Sintassi
object.prototype.name = value
Esempio: Date.prototype
var myBook = new book("Perl", "Mohtashim");
book.prototype.price = null;
myBook.price = 100;
console.log("Book title is : " + myBook.title + "<br>");
console.log("Book author is : " + myBook.author + "<br>");
console.log("Book price is : " + myBook.price + "<br>");
Il seguente output viene visualizzato in caso di corretta esecuzione del codice precedente.
Book title is : Perl
Book author is : Mohtashim
Book price is : 100