pattern module code example
Example 1: module pattern function syntax
(function() {
})();
Example 2: full information about module pattern in javascript
Formatter.log("Hello");
(function() {
})();
Formatter.log("Hello");