E’ un oggetto presente in tutte le funzioni e che viene inizializzato di default come vuoto.
Serve per aggiungere metodi / proprietà ad un “tipo” specifico.
E’ la proprietà interna di un’oggetto, la quale punto all’oggetto *prototype *****che l’ha creato.
Oggetto dell’oggetto
function Point(x, y) {
this.x = x;
this.y = y;
Point.prototype.pippo = function(){
return "ciao";
}
}
var myPoint = new Point(23, 12);
console.log(myPoint.__proto__); //{ pippo: [Function (anonymous)] }
console.log(Point.prototype); //{ pippo: [Function (anonymous)] }
console.log(myPoint.__proto__.pippo()); //ciao