The return value of $(undefined)
is an object or array or what?
The the body of $
:
return new jQuery.fn.init( selector, context, rootjQuery );
The particle body of jQuery.fn.init
is:
// HANDLE: $(""), $(null), $(undefined), $(false)
if ( !selector ) {
return this;
}
My understanding is that:
return new jQuery.fn.init( selector, context, rootjQuery );
~~~~~~~~~~
^
|
this?