freeCodeCamp Challenge Guide: Use Dot Notation to Access the Properties of an Object

Use Dot Notation to Access the Properties of an Object


Problem Explanation

The following code will simply print 1 from the obj object.

let obj = {
  property1: 1,
  property2: 2
};

console.log(obj.property1);

Following this logic, use the console.log operation to print both property1and property2to the screen.


Solutions

Solution 1 (Click to Show/Hide)
let dog = {
  name: "Spot",
  numLegs: 4
};
// Add your code below this line
console.log(dog.name);
console.log(dog.numLegs);
8 Likes