Tell us what’s happening:
why in prototype(numLegs) isn’t in beagle? (console.log(beagle))
hasOwnProperty found only first object ? parameter numLegs=False, why?
Your code so far
function Dog(name) {
this.name = name;
}
Dog.prototype.numLegs = 4;
let beagle = new Dog("Snoopy");
let ownProps = [];
let prototypeProps = [];
// Only change code below this line
for( let property in beagle){
if(beagle.hasOwnProperty(property)){
ownProps.push(property);}
else {
prototypeProps.push(property);
}
}
console.log(ownProps);
console.log(prototypeProps);
console.log(beagle); //<---
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66
.
Challenge: Iterate Over All Properties
Link to the challenge: