Skip to main content

Immediately Invoked Function Expressions (IIFE), explained.

Published 2021/07/26 14:33

What is IIFE (Immediately Invoked Function Expressions) in JavaScript?

Let's explain!

So let's suppose you have a function. A simple function that prints "Hello" to the console:

function sayHello(){
    var message = "Hello"
    console.log(message)
}

You need to call the function as soon as it's defined, so you do what makes more sense:

function sayHello(){
    var message = "Hello"
    console.log(message)
}

sayHello()

The function never needs to be called again after that. So you declare the function, call it and then never touch it again.

What this means that the function and its defined variable message take space that isn't needed, in lines of code, memory or variable names.

A better approach would be to structure a function in such a way that you don't need to name it. Just define it and run it immediately, and the function with its variables will disappear from your workspace after its run, clearing the way for more important things.

IIFEs or Immediately Invoked Function Expressions are the solution to this problem.

IIFEs are the simplest way to create functions that run as soon they are defined. You don't even need to give them a name!

Such a function is called an "anonymous function" because (you guessed it) it doesn't have a name.

So how does it work?

First, remove the name from the function:

function (){
    var message = "Hello"
    console.log(message)
}

Second, surround the function in brackets:

(function (){
    var message = "Hello"
    console.log(message)
})

This will define the function even if it doesn't have name.

So now we need to run it as soon as it's defined so include a () at the end:

(function (){
    var message = "Hello"
    console.log(message)
})()

That's it! The code will define an anonymous function which declares a variable and prints a message to the console, executes it on the spot, then everything disappears.

To show I mean by "everything disappears" see this code below. What will happen if I run it?

(function (){
    var message = "Hello"
    console.log(message)
})()

console.log(message)

I will get the first "Hello" in the console because it's part of the function but then I'll get a "message is not defined" error because after the function is run the function and its variable is not available any more.

I hope this article has made IIFEs easier to understand. Thank you for reading!

Conversation

Have you ever used IIFEs? Join the conversation in the thread

Dev, Explained (43 part series)

  1. Javascript Scopes, explained.
  2. Javascript Promises, explained.
  3. Accessibility, explained.
  4. React, explained
  5. Should I use forEach() or map()?
  6. Should I use Flexbox or CSS Grid?
  7. Docker, explained.
  8. Unit testing, explained
  9. Git, explained.
  10. Typescript, explained.
  11. async/await, explained.
  12. The DOM, explained.
  13. Regular expressions, explained
  14. GraphQL, explained.
  15. Vue, explained.
  16. Svelte, explained.
  17. API, explained.
  18. Javascript Hoisting, explained.
  19. Immediately Invoked Function Expressions (IIFE), explained.
  20. ARIA roles, explained.
  21. Test-driven Development, explained.
  22. ARIA live regions, explained.
  23. aria-label in accessibility, explained.
  24. Type coercion in Javascript, explained.
  25. Variables, explained.
  26. if statements, explained.
  27. Arrays, explained.
  28. Currying in Javascript, explained.
  29. Memoization, explained.
  30. For loops, explained.
  31. Javascript Prototypes, explained.
  32. React Hooks, explained.
  33. Graph databases, explained.
  34. MongoDB, explained.
  35. Serverless, explained.
  36. Javascript Callback functions, explained.
  37. HTML, explained.
  38. CSS, explained.
  39. Responsive design, explained.
  40. Javascript, explained.
  41. The CSS Box Model, explained.
  42. CSS Flexbox, explained.
  43. CSS Grid, explained.
2022 Savvas Stephanides
Buy me a coffee
Some icons from Freepik