Loading...

Tag: iife in js

What is IIFE in JavaScript?

An IIFE (Immediately Invoked Function Expression) pronounced as iify is a JavaScript function that runs as soon as it is defined. In other words, the function gets executed automatically as [ … ]