-
Today's lesson in #WTF #JavaScript: Apparently
MyClass.prototype
is actually an *instance* of its parent class and passes aninstanceof
check. It also does *not* invoke the constructor, meaning you can actually instantiate a class *without constructing it*. wat?