2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Delete Properties from a JavaScript Object
|
|
|
|
---
|
2019-07-24 00:59:27 -07:00
|
|
|
# Delete Properties from a JavaScript Object
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
### Hint 1
|
2018-10-12 15:37:13 -04:00
|
|
|
* change the properties of myDog by using dot notation
|
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
|
|
|
|
---
|
|
|
|
## Solutions
|
|
|
|
|
|
|
|
<details><summary>Solution 1 (Click to Show/Hide)</summary>
|
2018-10-12 15:37:13 -04:00
|
|
|
|
|
|
|
```javascript
|
|
|
|
var ourDog = {
|
2019-07-24 00:59:27 -07:00
|
|
|
name: "Camper",
|
|
|
|
legs: 4,
|
|
|
|
tails: 1,
|
|
|
|
friends: ["everything!"],
|
|
|
|
bark: "bow-wow"
|
2018-10-12 15:37:13 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
delete ourDog.bark;
|
|
|
|
|
|
|
|
// Setup
|
|
|
|
var myDog = {
|
2019-07-24 00:59:27 -07:00
|
|
|
name: "Happy Coder",
|
|
|
|
legs: 4,
|
|
|
|
tails: 1,
|
|
|
|
friends: ["freeCodeCamp Campers"],
|
|
|
|
bark: "woof"
|
2018-10-12 15:37:13 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Only change code below this line.
|
|
|
|
delete myDog.tails;
|
|
|
|
```
|
2019-07-24 00:59:27 -07:00
|
|
|
</details>
|
2018-10-12 15:37:13 -04:00
|
|
|
|