jQuery library is not used in google.com
When we type $
in Console of google.com and hit enter, we can see
function $(selector, [startNode]) { [Command Line API] }
But here in Stackoverflow, since jQuery library is used, when we type "$" we can see :
function (a,b){return new n.fn.init(a,b)}
What is the difference between the $
we see in console for those where jQuery is not used and where Jquery is used?
Does one have more benefits than the other?
As per my knowledge, $
is jQuery's shorthand.