2018-10-16 21:32:40 +05:30

396 B

title
title
Updating Object Properties

Updating Object Properties

Hint:

Use dot ** . ** notation to access the object property.

Spoiler Alert: Solution Ahead!

Solution:

// Setup
var myDog = {
  "name": "Coder",
  "legs": 4,
  "tails": 1,
  "friends": ["freeCodeCamp Campers"]
};

// Only change code below this line.

myDog.name = "Happy Coder"; // Solution