What does a .prototype mean in JS?

Did you go through the part of the fCC JS curriculum on Object Oriented Programming?

MDN links:

MDN: Object prototypes

Prototypes are the mechanism by which JavaScript objects inherit features from one another. In this article, we explain how prototype chains work and look at how the prototype property can be used to add methods to existing constructors.