Why are the JavaScript primitives are not an instance of their constructors?
Here's a snapshot of what I've tested on the Firefox console. Why is; 'a instance of Number', gives false, while 'object instance of Object' is true? Does this mean, the variable "a" is a primitive and not a child of Number() constructor?