(function( ) { // Define an anonymous function. No name means no global symbol
// Code goes here
// Any variables are safely nested within the function,
// so no global symbols are created.
})( ); // End the function definition and invoke it.