When entered into a JavaScript console, a jQuery object appears as an array. However, it\'s still an instance of the jQuery object.
var j = jQuery(); => [
It returns an empty array, because it did nothing - array of elements affected.
Proper way to inspect would be
console.log(jQuery);
if you would do
console.log(jQuery('div'));
you will see that it returns array of elements.