Source:

    (function(){
        document.write('Red');
    })();

    (function(){
        document.write('Green');
    }());

    (function(value){
        document.write(value);
    })('Blue');

    (function(value){
        document.write(value);
    }('Brown'));
        

Output