In the following
var obj = { one:1, two:2, three:3, four:4, five:5 };
$.each(obj, function(i, val) {
console.log(val);
});
what does $ mean here? Is $ an object?
|
In the following
what does $ mean here? Is $ an object? |
|||
|
|
|||
|
|
-jQuery Site |
|||||
|
|
In JavaScript, a function is a special kind of object. You can create a function and add properties to it like any other object.
|
|||
|
|
$in your code refers to the jQuery function, and therefore to the jQuery function as an object. The way jQuery is written is such that various utility methods are exposed as properties of the object (that is, properties of the function object). – Pointy Aug 17 '12 at 21:52Xion's answer, see this documentation which mentions this too: api.jquery.com/jQuery.noConflict As stated at the top of the documentation:Many JavaScript libraries use $ as a function or variable name, just as jQuery does. In jQuery's case, $ is just an alias for jQuery, so all functionality is available without using $.– François Wahl Aug 17 '12 at 22:17