Learning javascript prototypes the coffee-shop way
What is prototype?
A JavaScript prototype is an object from which other objects inherit properties and methods. All JavaScript objects internally reference their prototypes through the proto property, enabling prototypal inheritance.
When an object i...
understand-functions.hashnode.dev4 min read