--- id: 587d7daf367417b2b2512b7d challengeType: 1 forumTopicId: 301320 localeTitle: 迭代所有属性 --- ## Description
现在你已经了解了两种属性: 自身属性和原型属性。自身属性是直接在对象上定义的。而原型属性是定义在prototype上的: ```js function Bird(name) { this.name = name; // 自身属性 } Bird.prototype.numLegs = 2; // 原型属性 let duck = new Bird("Donald"); ``` 这个示例会告诉你如何将duck自身属性和原型属性分别添加到ownProps数组和prototypeProps数组里面: ```js let ownProps = []; let prototypeProps = []; for (let property in duck) { if(duck.hasOwnProperty(property)) { ownProps.push(property); } else { prototypeProps.push(property); } } console.log(ownProps); // prints ["name"] console.log(prototypeProps); // prints ["numLegs"] ```
## Instructions
beagle的自身属性都添加到ownProps数组里面去。将Dog的所有原型属性添加到prototypeProps数组中。
## Tests
```yml tests: - text: "这个ownProps数组应该包含'name'这个值。" testString: assert(ownProps.indexOf('name') !== -1); - text: "这个prototypeProps数组应该包含'numLegs'这个值。" testString: assert(prototypeProps.indexOf('numLegs') !== -1); - text: 在不使用内置方法Object.keys()的情况下完成这个挑战。 testString: assert(!/\Object.keys/.test(code)); ```
## Challenge Seed
```js function Dog(name) { this.name = name; } Dog.prototype.numLegs = 4; let beagle = new Dog("Snoopy"); let ownProps = []; let prototypeProps = []; // Add your code below this line ```
## Solution
```js function Dog(name) { this.name = name; } Dog.prototype.numLegs = 4; let beagle = new Dog("Snoopy"); let ownProps = []; let prototypeProps = []; for (let prop in beagle) { if (beagle.hasOwnProperty(prop)) { ownProps.push(prop); } else { prototypeProps.push(prop); } } ```