About 32,700 results
Open links in new tab
  1. IIFE - Glossary | MDN - MDN Web Docs

    Jul 24, 2025 · An IIFE (Immediately Invoked Function Expression) is an idiom in which a JavaScript function runs as soon as it is defined. It is also known as a self-executing anonymous function. The …

  2. Immediately Invoked Function Expressions (IIFE) in JavaScript

    Jul 11, 2025 · Explanation: The IIFE is immediately invoked and returns the sum of x and y. The result of the IIFE, which is 30, is assigned to the variable result. IIFEs are commonly used to create private …

  3. JavaScript IIFE Immediately Invoked Function Expressions (IIFE)

    What Is an IIFE? Normally, a function runs only when it is called. An IIFE runs automatically when the JavaScript engine reads it (compiles it).

  4. Immediately invoked function expression - Wikipedia

    An immediately invoked function expression (or IIFE, pronounced "iffy", IPA /ˈɪf.i/) is a programming language idiom which produces a lexical scope using function scoping. It was popular in JavaScript …

  5. JavaScript Immediately Invoked Function Expressions (IIFE) Explained

    In this tutorial, you will learn about JavaScript immediately invoked function expressions (IIFE) and their purposes.

  6. Immediately Invoked Function Expression - IIFE

    As name suggest, IIFE is a function expression that automatically invokes after completion of the definition. The parenthesis () plays important role in IIFE pattern.

  7. iife - What is the (function () { } ) () construct in JavaScript ...

    IIFE is simply a function that is executed right after it is created. So insted of the function having to wait until it is called to be executed, IIFE is executed immediately. Let's construct the IIFE by example. …

  8. IIFE for Complex Initialization - C++ Stories

    Jan 24, 2026 · What do you do when the code for a variable initialization is complicated? Do you move it to another method or write inside the current scope? In this blog post, I’d like to present a trick that …

  9. home eng - Viện Đào Tạo Quốc Tế - iife.edu.vn

    Dec 24, 2024 · The mission of the Institute of International Finance Education (IIFE) is to compliment the Academy of Finance (AoF) in “educating high quality human resources in finance and accounting for …

  10. IIFE: a (wrongfully?) forgotten JavaScript pattern - CodiLime

    Mar 28, 2024 · Explore the nuances of Immediately Invoked Function Expressions (IIFE) in JavaScript, a pattern often overlooked yet crucial for scoping and privacy.