DEV Community

Discussion on: Explain Inheritance in JavaScript Classes Like I'm Five

 
somedood profile image
Basti Ortiz

Oh, I just wanted to mention a "feature" that comes with prototypal inheritance for the sake of discussion since this post is about prototypal inheritance in the first place.

Also, I never actually thought of composition that way. I didn't know that the two objects would end up referencing the same speak method. That's pretty cool. Thanks for the heads up!