On some JS code on some sites I see Javascript code such as this:
SomeName.init = (function () {
    // some stuff
})();
I mean, this is not a jQuery plugin code such as this:
(function( $ ){
    $.fn.myPlugin = function() {
    // Do your awesome plugin stuff here
    };
})( jQuery );
Then, what is it? and what is the resulting JS object?
 
     
     
     
    