On various sites, jQuery's $
variable is referred to as an alias, and on others, it is referred to as a factory. I took a look at the source code, and I think the former is correct. As far as I can see, the dollar symbol is being defined here:
// Expose jQuery to the global object
return (window.jQuery = window.$ = jQuery);
This is setting both $
and jQuery
to the SAME alias; there is no 'factory' for jQuery objects. Are the sites referring to $
as a 'factory' simply wrong?