I tried to investigate the jQuery code, so I used this:
document.write($.constructor);
jsfiddle
I got this result:
$, jQuery is just a function. Without invoking it, it's just an ordinary function. A function's constructor is Function, hence $.constructor shows [native code].
$
jQuery
Function
$.constructor
[native code]