function Personne(nom) { this.nom = nom; this.salutation = function() { alert('Bonjour ! Je m'appelle ' + this.nom + '.'); }; }