freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../basic-javascript/updating-object-properties/index.md

27 lines
396 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Updating Object Properties
---
## Updating Object Properties
## Hint:
Use dot ** . ** notation to access the object property.
## Spoiler Alert: Solution Ahead!
## Solution:
```javascript
// Setup
var myDog = {
"name": "Coder",
"legs": 4,
"tails": 1,
"friends": ["freeCodeCamp Campers"]
};
// Only change code below this line.
myDog.name = "Happy Coder"; // Solution
```