Possible Duplicate:
What makes a jQuery object show up as an array in Chrome's Developer Tools?
I would like to know why this behavior in javascript console:
In this example everything is clear:
var obj = {find: function () {}}
obj // Object { find=function()}
obj.find // function()
In the following example I would like some explanation about the output of $.fn
I would expect the output of $.fn like an Object containing keys and values, but ....
$.fn // [] // ***************** freaky part ****************
$.fn.find // function()