The previous lesson explained a bit about how JavaScript has a different notion of classes. To simulate the way that classes work, we can use a variety of techniques. One of the common techniques is ...
Anytime a constructor function creates a new object, that object is said to be an <dfn>instance</dfn> of its constructor. JavaScript gives a convenient way to verify this with the `instanceof` ...