IIFE1 (function () {})(); (function () { /* ... */ })();(function () { /* ... */ }());(() => { /* ... */ })(); a regular functionfunction () {}+ function call();IIFE- Immediately-Invoked Function Expression- It executes immediately after it’s created.It was popular in JavaScript as a method to support modular programming before the introduction of more standardized solutions such as CommonJS and ES modules. Immediately i.. 2022. 8. 29. 댓글