“Poo JS” Respostas de código

Poo JS

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

Poo JS

personne1.nom
personne1.salutation()
personne2.nom
personne2.salutation()
Xerothermic Xenomorph

Poo JS

function creerNouvellePersonne(nom) {
  var obj = {};
  obj.nom = nom;
  obj.salutation = function() {
    alert('Salut ! Je m\'appelle ' + this.nom + '.');
  };
  return obj;
}
Xerothermic Xenomorph

Poo JS

var personne1 = new Personne('Bob');
var personne2 = new Personne('Sarah');
Xerothermic Xenomorph

Respostas semelhantes a “Poo JS”

Perguntas semelhantes a “Poo JS”

Mais respostas relacionadas para “Poo JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código