Question 5 of 10Pro Only
How does prototypal inheritance work in JavaScript? How does it differ from classical inheritance?
Sample answer preview
## What is Prototypal Inheritance? **Prototypal inheritance** is JavaScript's native inheritance model where objects inherit directly from other objects through a prototype chain, rather than from classes.
prototypeprototype chain__proto__Object.createinheritanceconstructor function