An Immediately Invoked Function Expression (IIFE) is another way to execute a function immediately:
(function() { console.log("hello"); })(); // "hello"Dec 03, 20251 min read
An Immediately Invoked Function Expression (IIFE) is another way to execute a function immediately:
(function() { console.log("hello"); })(); // "hello"