In the following
var obj = { one:1, two:2, three:3, four:4, five:5 }; $.each(obj, function(i, val) { console.log(val); });
what
$ is an alias for jQuery object/function. It's acts as a namespace under which all jQuery functions are stored.
$
jQuery