react js immediately invoked functio code example
Example 1: Immediately-Invoked Function javascript
(() => {
/* */
})()
Example 2: immediately invoked function expression
(function () {
var aName = "Barry";
})();
// Variable aName is not accessible from the outside scope
aName // throws "Uncaught ReferenceError: aName is not defined"