IIFE - thelastmile/FreeCodeCamp GitHub Wiki
IIFE Initialism for Immediately Invoked Function Expression
Keep your data inside the closure!
(function(){
//add your magic here
})();
Keep your data inside the closure!
(function(){
//add your magic here
})();