es6 IIFE
What is ES6 IIFE?
ES6 IIFE stands for Immediately Invoked Function Expression, which is a way of declaring and calling a function at the same time. It is commonly used in JavaScript to create a local scope and prevent variables from polluting the global scope.
How to use ES6 IIFE?