| Index | Précédent | Suivant |

Héritage

L'héritage se fait par affectation du prototype

function personne(nom, prenom) {
  this.nom=nom;
  this.prenom=prenom;
}
function employe(nom, prenom, poste){
  this.base=personne;
  this.base(nom,prenom);
  this.poste=poste;
}
employe.prototype=new personne;
steph = new employe("bonhomme","stéphane","développeur");

13