441 B
441 B
title, localeTitle
title | localeTitle |
---|---|
Updating Object Properties | 更新对象属性 |
更新对象属性
暗示:
使用点**。 **表示法访问对象属性。
剧透警报:未来的解决方案!
解:
// Setup
var myDog = {
"name": "Coder",
"legs": 4,
"tails": 1,
"friends": ["freeCodeCamp Campers"]
};
// Only change code below this line.
myDog.name = "Happy Coder"; // Solution