“prototype d'objet JavaScript” Réponses codées

Prototype d'objet JavaScript

// constructor function
function Person () {
    this.name = 'John',
    this.age = 23
}

// creating objects
let person1 = new Person();
let person2 = new Person();

// adding new property to constructor function
Person.prototype.gender = 'Male';

console.log(person1.gender); // Male
console.log(person2.gender); // Male
SAMER SAEID

Fonction Prototype JavaScript

function Person(name) {
  this.name = name;
}
Person.prototype.getName = function() {
  return this.name;
}

var person = new Person("John Doe");
person.getName() //"John Doe"
TC5550

prototype d'objet JavaScript

function listAllProperties(o) {
  let objectToInspect = o;
  let result = [];

  while(objectToInspect !== null) {
    result = result.concat(Object.getOwnPropertyNames(objectToInspect));
    objectToInspect = Object.getPrototypeOf(objectToInspect)
  }

  return result;
}
Gazi Jakia Sultana

accéder au prototype d'un objet JavaScript


var f = function();
var instance = new f();

Different Dugong

Prototypes d'objets JavaScript

function Person(first, last, age, eyecolor) {
  this.firstName = first;
  this.lastName = last;
  this.age = age;
  this.eyeColor = eyecolor;
}

const myFather = new Person("John", "Doe", 50, "blue");
const myMother = new Person("Sally", "Rally", 48, "green");
naly moslih

accéder au prototype d'un objet JavaScript

Object.getPrototypeOf(x);

//Output
ƒ () { [native code] }
Anthony Smith

Réponses similaires à “prototype d'objet JavaScript”

Questions similaires à “prototype d'objet JavaScript”

Plus de réponses similaires à “prototype d'objet JavaScript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code