JavaScript

Call Object as Namespace

(function () { //anonymous function
        var a = 123; //this variable will dissapear at the end of the function
        var b = 'hello';
        //some more code here
 })(); //invoke my anonymous function

José M. Vidal .

48 of 65