IIFE (Immediately Invoked Function Expression) in Javascript
IIFE’s full form goes like Immediately Invoked Function Expression & it means the function is invoked at the same place where it is defined.
Syntax of IIFE in Javascript
(function (){
//performing operations
})()
From the above syntax, we can in...
pulkitgovrani.hashnode.dev2 min read