Tell us what’s happening:
this may be because I didn’t pay attention where I should have, but I don’t understand why the
code:
Dog.bark = function() {
console.log("Woof!");
}
doesn’t work and instead you need Dog.prototype.bark = function() {…}
Your code so far
function Animal() { }
Animal.prototype.eat = function() { console.log("nom nom nom"); };
function Dog() { }
// Add your code below this line
Dog.prototype = Object.create(Animal.prototype);
Dog.prototype.bark = function() {
console.log("Woof!");
}
// Add your code above this line
let beagle = new Dog();
beagle.constructor = Dog;
beagle.eat(); // Should print "nom nom nom"
beagle.bark(); // Should print "Woof!"
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/object-oriented-programming/add-methods-after-inheritance/