| Index | Précédent | Suivant |

Méthodes

Les méthodes sont des fonctions liées :

Fonction anonyme

steph.annonce= function(msg) {
 alert('Steph a dit '+msg);
}

Fonction explicite

fonction annonce(msg) {
  alert(this.prenom+' a dit '+msg);
}
personne.prototype.annonce=annonce;

14