What are IIFEs (Immediately Invoked Function Expressions)?
Functions that execute immediately after being defined.
Example:
(function() {
console.log("Runs instantly!");
})();
Used to create private scopes before let and const.
Functions that execute immediately after being defined.
Example:
(function() {
console.log("Runs instantly!");
})();
Used to create private scopes before let and const.