I have a confusion when I learn jquery source code : Please see the following the third row:
// HANDLE: $(expr, $(...))
} else if ( !context || context.jquery ) {
return ( context || rootjQuery ).find( selector );
I think "rootjQuery" is "$(document)", "context" is a jquery object.
why context and rootjQuery can perform a '||' operations ? and returns the result is not boolean type ?
Thank you!