Immediately-invoked function expression
An immediately-invoked function expression (or IIFE, pronounced "iffy"[1]) is a JavaScript design pattern which produces a lexical scope using JavaScript's function scoping. Immediately-invoked function expressions can be used to avoid variable hoisting from within blocks, protect against polluting the global environment and simultaneously allow public access to methods while retaining privacy for variables defined within the function. This pattern has been referred to as a self-executing anonymous function,[2] but Ben Alman introduced the term IIFE as a more semantically accurate term for the pattern, shortly after its discussion arose on comp.lang.javascript.[1][3] [4]
Contents
Usage
Immediately-invoked function expressions may be written in a number of different ways.[5] A common convention is to enclose the function expression (and optionally its invocation operator—Douglas Crockford's style) in parentheses to explicitly tell the parser to expect an expression, since in JavaScript parentheses can't contain statements. Otherwise, in most situations, when the parser encounters the function
keyword, it treats it as a function declaration (statement), and not as a function expression.[6][7]
(function () { … })();
(function () { … }()); // Douglas Crockford's style
There are other ways to enforce a function expression:
!function () { … }();
~function () { … }();
-function () { … }();
+function () { … }();
In contexts where an expression is expected, wrapping in parentheses is not necessary:
var f = function () { … }();
true && function () { … }();
0, function () { … }();
Passing variables into the scope is done as follows:
(function(a, b) { … })("hello", "world");
An initial parenthesis is one case where the automatic semicolon insertion (ASI) in JavaScript can cause problems; the expression is instead interpreted as a call to the last term on the preceding line. In some styles that omit optional semicolons, the semicolon is placed in front of the parenthesis, and is known as a defensive semicolon.[8][9] For example:
a = b + c
;(function () {
// code
})();
…to avoid being parsed as c(…)
.
Examples
The key to understanding design patterns such as immediately-invoked function expressions is to realize JavaScript has function scope (but not block scope) and passes values by reference inside a closure.[10]
Evaluation context
A lack of block scope means that variables defined inside, for example, a for loop will have their definition "hoisted" to the top of the enclosing function. Evaluating a function which depends on variables modified by the outer function (including by iteration) can be difficult. We can see this without a loop if we update a value between defining and invoking the function.[11]
var v, getValue;
v = 1;
getValue = function () { return v; };
v = 2;
getValue(); // 2
While the result may seem obvious when updating v
manually, it can produce unintended results when getValue()
is defined inside a loop.
Hereafter the function passes v
as an argument and is invoked immediately, preserving the inner function's execution context.[12]
var v, getValue;
v = 1;
getValue = (function (x) {
return function () { return x; };
})(v);
v = 2;
getValue(); // 1
This is equivalent to the following code:
var v, getValue;
v = 1;
function f(x) {
return function () { return x; };
};
getValue = f(v);
v = 2;
getValue(); // 1
David Herman's Effective JavaScript contains an example illustrating the problems of evaluation context inside loops.[13] While Herman's example is deliberately convoluted it arises directly from the same lack of block scope.[14]
Establishing private variables and accessors
IIFEs are also useful for establishing private methods for accessible functions while still exposing some properties for later use.[15] The following example comes from Alman's post on IIFEs.[1]
var counter = (function () {
var i = 0;
return {
get: function () {
return i;
},
set: function (val) {
i = val;
},
increment: function () {
return ++i;
}
};
})();
// "counter" is an object with properties, which in this case happen to be methods.
counter.get(); // 0
counter.set(3);
counter.increment(); // 4
counter.increment(); // 5
If we attempt to access counter.i
from the global environment, it will be undefined as it is enclosed within the invoked function and is not a property of counter
. Likewise, if we attempt to access i
it will result in an error as we have not declared i
in the global environment.
Terminology
"Immediately-invoked function expression" as a term describes a design pattern which has also been referred to as a "self-executing anonymous function."[1][5] However, immediately-invoked functions need not be anonymous and ECMAScript 5's strict mode forbids arguments.callee
,[16] making the latter term less accurate.[3][12]
In lambda-calculus, this construct was referred to as "redex", for reducible expression, see Reduction strategy (code optimization).
References
<templatestyles src="Reflist/styles.css" />
Cite error: Invalid <references>
tag; parameter "group" is allowed only.
<references />
, or <references group="..." />
External links
- Lua error in package.lua at line 80: module 'strict' not found.
- Lua error in package.lua at line 80: module 'strict' not found.
- ↑ 1.0 1.1 1.2 1.3 Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ 3.0 3.1 Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ 5.0 5.1 Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ "JavaScript Semicolon Insertion: Everything you need to know", Friday, May 28, 2010
- ↑ "Semicolons in JavaScript are optional", by Mislav Marohnić, 07 May 2010
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ 12.0 12.1 Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.