Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

POO js

function Personne(nom) {
  this.nom = nom;
  this.salutation = function() {
    alert('Bonjour ! Je m'appelle ' + this.nom + '.');
  };
}
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #POO #js
ADD COMMENT
Topic
Name
9+5 =