I've just seen some dude suggest the following syntax instead of the one I'm usually (always) using.
$newToMe = "I haven't used this way";
var oldWay = "I've always use this way";
The general quality of his answer to the original question suggests that he knows stuff and isn't just horsing around. Still, it seems to me like there's a risk of polluting the scope of jQuery by doing so.
Am I right to be cautious or is it a good way of keeping my own stuff in a narrow scope? Should one combine the scopiness and precautiously use something like the following?
$myCoolStuff.thing1 = $(".ones");
$myCoolStuff.thing2 = $(".twos");