//anonymous 1
(function(){
$('something').first().addClass("anything");
});
//anonymous 2
(function(){
$('something').first().addClass("anything");
})();
What is the actual and practical difference between these two?
(function(){
});
and
(function(){
})();