“Zugriff auf ein Objekt JS” Code-Antworten

Zugriff auf ein Objekt JS

 // Access an object's properties
 const person1 = {};
 person1['firstname'] = 'Mario';
 person1['lastname'] = 'Rossi';

 console.log(person1.firstname);
 // expected output: "Mario"

 const person2 = {
    firstname: 'John',
    lastname: 'Doe'
 };

  console.log(person2['lastname']);
  // expected output: "Doe"
Anthony Smith

Zugriff auf ein Objekt JS


settings.birthplace = settings.country;

Blushing Butterfly

Ähnliche Antworten wie “Zugriff auf ein Objekt JS”

Fragen ähnlich wie “Zugriff auf ein Objekt JS”

Weitere verwandte Antworten zu “Zugriff auf ein Objekt JS” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen