In the past I've been told: "Everything in Javascript is a Function". I'm curious how much truth there is to this. As an example I quote the Chrome JS Console:
> String
function String() { [native code] }
> Number
function Number() { [native code] }
> Object
function Object() { [native code] }
> Array
function Array() { [native code] }
> Function
function Function() { [native code] }
What about literals, operators?