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(); => [
The console makes it look like an array because it has array-like properties. It has length and n keys using integers.