AshKeys

Confessions and Confusions of a Freelance Fullstacker.

Ashok Mannolu Arunachalam, What isIIFEJavaScript
Back

What is IIFE

IIFE stands for Immediately Invoked Function Expression. An anoymouns function that will be invoked soon after its declaration.

js
(() => {
console.log('I will be invoked right away!');
})(); // I will be invoked right away!

Though it looks weird or beautiful (to me ^_^), there are great benefits that come along with this IIFE approach.

Modularity

We can group our components or modules in a IIFE so that namespace conflicts reduced almost to none.

Scoping

We can declare our local functions and variables without worrying about polluting global scope or namespace conflicts.

js
(() => {
var personal = 'I am an Introvert!';
})()
console.log(personal); // ReferenceError: personal is not defined

Extras: