iife function code example
Example 1: immediate invoke function js
(function () {
statements
})();
Example 2: javascript Immediately Invoked Function Expression
result = (function(a, b){
return a - b;
})(100, 42);
console.log(result); // 58
Example 3: immediate invoke function js
(() => {
// statements
})();
Example 4: Immediately-Invoked Function javascript
(function() {
/* */
})()
Example 5: 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"
Example 6: iife
/*An IIFE (Immediately Invoked Function Expression) is a JavaScript
function that runs as soon as it is defined
*/
(function () {
//write your js code here
});