🔍 What Are Prototypes?
In JavaScript, everything is an object (well, almost 😉), and all objects have a hidden internal link to another object called a prototype.
This is how inheritance works in JS — not through classes (like in Java), but through ...