Like the old Albert said: "If you can't explain it to a six-year old, you really don't understand it yourself.”. Well, I tried to explain JavaScript closures to a 27-year old friend and completely failed.

How would you explain it to a 6-year old person that is strangely interested in that subject?

EDIT: I have seen the Scheme example given in Stack Overflow, and it did not help.

link

2  
Closures are a difficult concept to come to grips with on the first try. That's why SO is the perfect way to get this information in a coherent, straightforward series of well written explanations all from different perspectives. Ie; Send the 6-year old here to find the explanation that they understand. – Jess Telford May 3 at 1:35
feedback

20 Answers

up vote 548 down vote accepted

Whenever you see the function keyword within another function, the inner function has access to variables in the outer function.

function foo(x) {
  var tmp = 3;
  function bar(y) {
    alert(x + y + (++tmp));
  }
  bar(10);
}
foo(2)

This will always alert 16, because bar can access the x which was defined as an argument to foo, and it can also access tmp from foo.

That is not a closure. A closure is when you return the inner function. The inner function will close-over the variables of foo before leaving.

function foo(x) {
  var tmp = 3;
  return function (y) {
    alert(x + y + (++tmp));
  }
}
var bar = foo(2); // bar is now a closure.
bar(10);

The above function will also alert 16, because bar can still refer to x and tmp, even though it is no longer directly inside the scope.

However, since tmp is still hanging around inside bar's closure, it is also being incremented. It will be incremented each time you call bar. As a result of this it will alert 17 the second time bar(10) is called, 18 the third time, etc.

(Not for your 6 year old: It is possible to create more than one closure function, either by returning a list of them or by setting them to global variables. All of these will refer to the same x and the same tmp, they don't make their own copies.)

Edit: And now to explain the part that isn't obvious.

Here the number x is a literal number. As with other literals in JavaScript, when foo is called, the number x is copied into foo as its argument x.

On the other hand, JavaScript always uses references when dealing with Objects. If say, you called foo with an Object, the closure it returns will reference that original Object!

function foo(x) {
  var tmp = 3;
  return function (y) {
    alert(x + y + tmp);
    x.memb = x.memb ? x.memb + 1 : 1;
    alert(x.memb);
  }
}
var age = new Number(2);
var bar = foo(age); // bar is now a closure referencing age.
bar(10);

As expected, each call to bar(10) will increment x.memb. What might not be expected, is that x is simply referring to the same object as the age variable! After a couple of calls to bar, age.memb will be 2!

This is the basis for memory leaks with HTML objects, but that's a little beyond the scope of this, ahem, article, ahem. http://stackoverflow.com/questions/111102#112265

link
17  
This example doesn't use return keyword and yet creates closure: function closureExample(obj, text, timedelay) { setTimeout(function() { document.getElementById(objID).innerHTML = text; }, timedelay); } closureExample(‘myDiv’, ‘Closure is created’, 500); – JohnMerlino Oct 12 '10 at 23:14
9  
You said that not returning the function is not a closure. But it has exactly the same behavior. For instance var bar; function foo(x){ bar = function(){ alert(x); } }; foo(5); bar(); has no return statement but this is a closure. Same thing when passing functions to event listeners, there is no return statement but still closures. I think the idea of a return comes from closure theory. Am I wrong? – Pierre Feb 2 '11 at 5:24
35  
While I don't disagree with this answer from a technical standpoint, I fail to see how the requisite 6 year old would understand it as I had to read it three times to understand it... and I use closures all the time. – BenAlabaster Jun 23 '11 at 17:15
26  
It's not entirely true that the function has to be returned to create a closure. Any inner function will always be added to the particular scope chain regardless if it is exported or not. Quite simply, as long as something has a reference to any function, it will have access to the particular scope chain of that function. – Peter Jul 27 '11 at 22:27
15  
This example promotes the common misunderstanding about having to return a function in order to create a closure. But it does make it clear that the inner function has access to the environment it was created within even after the code that created the environment has returned. – dlaliberte Aug 4 '11 at 14:43
show 6 more comments
feedback

JavaScript Closures For Dummies (mirror) is the article that finally got me to understand closures. The explanation posted there is much better than anything I could write here.


For archiving purposes, I (flying sheep) will put the article from the link below. The article was created by Morris and put under the Creative Commons Attribution / Share alike license, so i’ll recreate it as close to the original as possible.

JavaScript Closures for Dummies

Submitted by Morris on Tue, 2006-02-21 10:19.

Closures Are Not Magic

This page explains closures so that a programmer can understand them - using working JavaScript code. It is not for gurus nor functional programmers.

Closures are not hard to understand once the core concept is grokked. However, they are impossible to understand by reading any academic papers or academically oriented information about them!

This article is intended for programmers with some programming experience in a main-stream language, and who can read the following JavaScript function:

function sayHello(name) {
  var text = 'Hello ' + name;
  var sayAlert = function() { alert(text); }
  sayAlert();
}

An Example of a Closure

Two one sentence summaries:

  • a closure is the local variables for a function - kept alive after the function has returned, or
  • a closure is a stack-frame which is not deallocated when the function returns. (as if a 'stack-frame' were malloc'ed instead of being on the stack!)

The following code returns a reference to a function:

function sayHello2(name) {
  var text = 'Hello ' + name; // local variable
  var sayAlert = function() { alert(text); }
  return sayAlert;
}

Most JavaScript programmers will understand how a reference to a function is returned to a variable in the above code. If you don't, then you need to before you can learn closures. A C programmer would think of the function as returning a pointer to a function, and that the variables sayAlert and say2 were each a pointer to a function.

There is a critical difference between a C pointer to a function, and a JavaScript reference to a function. In JavaScript, you can think of a function reference variable as having both a pointer to a function as well as a hidden pointer to a closure.

The above code has a closure because the anonymous function function() { alert(text); } is declared inside another function, sayHello2() in this example. In JavaScript, if you use the function keyword inside another function, you are creating a closure.

In C, and most other common languages after a function returns, all the local variables are no longer accessable because the stack-frame is destroyed.

In JavaScript, if you declare a function within another function, then the local variables can remain accessable after returning from the function you called. This is demonstrated above, because we call the function say2(); after we have returned from sayHello2(). Notice that the code that we call references the variable text, which was a local variable of the function sayHello2().

function() { alert(text); }

Click the button above to get JavaScript to print out the code for the anonymous function. You can see that the code refers to the variable text. The anonymous function can reference text which holds the value 'Jane' because the local variables of sayHello2() are kept in a closure.

The magic is that in JavaScript a function reference also has a secret reference to the closure it was created in - similar to how delegates are a method pointer plus a secret reference to an object.

More examples

For some reason closures seem really hard to understand when you read about them, but when you see some examples you can click to how they work (it took me a while). I recommend working through the examples carefully until you understand how they work. If you start using closures without fully understanding how they work, you would soon create some very wierd bugs!

Example 3

This example shows that the local variables are not copied - they are kept by reference. It is kind of like keeping a stack-frame in memory when the outer function exits!

function say667() {
  // Local variable that ends up within closure
  var num = 666;
  var sayAlert = function() { alert(num); }
  num++;
  return sayAlert;
}

Example 4

All three global functions have a common reference to the same closure because they are all declared within a single call to setupSomeGlobals().

function setupSomeGlobals() {
  // Local variable that ends up within closure
  var num = 666;
  // Store some references to functions as global variables
  gAlertNumber = function() { alert(num); }
  gIncreaseNumber = function() { num++; }
  gSetNumber = function(x) { num = x; }
}

The three functions have shared access to the same closure - the local variables of setupSomeGlobals() when the three functions were defined.

Note that in the above example, if you click setupSomeGlobals() again, then a new closure (stack-frame!) is created. The old gAlertNumber, gIncreaseNumber, gSetNumber variables are overwritten with new functions that have the new closure. (In JavaScript, whenever you declare a function inside another function, the inside function(s) is/are recreated again each time the outside function is called.)

Example 5

This one is a real gotcha for many people, so you need to understand it. Be very careful if you are defining a function within a loop: the local variables from the closure do not act as you might first think.

function buildList(list) {
  var result = [];
  for (var i = 0; i < list.length; i++) {
    var item = 'item' + list[i];
    result.push( function() {alert(item + ' ' + list[i])} );
  }
  return result;
}

function testList() {
  var fnlist = buildList([1,2,3]);
  // using j only to help prevent confusion - could use i
  for (var j = 0; j < fnlist.length; j++) {
    fnlist[j]();
  }
}

The line result.push( function() {alert(item + ' ' + list[i])} adds a reference to an anonymous function three times to the result array. If you are not so familiar with anonymous functions think of it like:

pointer = function() {alert(item + ' ' + list[i])};
result.push(pointer);

Note that when you run the example, "item3 undefined" is alerted three times! This is because just like previous examples, there is only one closure for the local variables for buildList. When the anonymous functions are called on the line fnlistj; they all use the same single closure, and they use the current value for i and item within that one closure (where i has a value of 3 because the loop had completed, and item has a value of 'item3').

Example 6

This example shows that the closure contains any local variables that were declared inside the outer function before it exited. Note that the variable alice is actually declared after the anonymous function. The anonymous function is declared first: and when that function is called it can access the alice variable because alice is in the closure. Also sayAlice()(); just directly calls the function reference returned from sayAlice() - it is exactly the same as what was done previously, but without the temp variable.

function sayAlice() {
  var sayAlert = function() { alert(alice); }
  // Local variable that ends up within closure
  var alice = 'Hello Alice';
  return sayAlert;
}

Tricky: note also that the sayAlert variable is also inside the closure, and could be accessed by any other function that might be declared within sayAlice() or it could be accessed recursively within the inside function.

Example 7

This final example shows that each call creates a separate closure for the local variables. There is not a single closure per function declaration. There is a closure for each call to a function.

function newClosure(someNum, someRef) {
  // Local variables that end up within closure
  var num = someNum;
  var anArray = [1,2,3];
  var ref = someRef;
  return function(x) {
      num += x;
      anArray.push(num);
      alert('num: ' + num +
          '\nanArray ' + anArray.toString() +
          '\nref.someVar ' + ref.someVar);
    }
}

Summary

If everything seems completely unclear then the best thing to do is to play with the examples. Reading an explanation is much harder than understanding examples. My explanations of closures and stack-frames etc are not technically correct - they are gross simplifications intended to help understanding. Once the basic idea is grokked, you can pick up the details later.

Final points:

  • Whenever you use function inside another function, a closure is used.
  • Whenever you use eval() inside a function, a closure is used. The text you eval can reference local variables of the function, and within eval you can even create new local variables by using eval('var foo = …
  • When you use Function() inside a function, it does not create a closure. (The new function cannot reference the local variables of the function calling Function()).
  • A closure in JavaScript is like keeping a copy of the all the local variables, just as they were when a function exited.
  • It is probably best to think that a closure is always created just on entry to a function, and the local variables are added to that closure.
  • A new set of local variables is kept every time a function with a closure is called (Given that the function contains a function declaration inside it, and a reference to that inside function is either returned or an external reference is kept for it in some way).
  • Two functions might look like they have the same source text, but have completely different behaviour because of their 'hidden' closure. I don't think JavaScript code can actually find out if a function reference has a closure or not.
  • If you are trying to do any dynamic source code modifications ( for example: myFunction = Function(myFunction.toString().replace(/Hello/,'Hola')); ), it won't work if myFunction is a closure (Of course, you would never even think of doing source code string substitution at runtime, but...).
  • It is possible to get function declarations within function declarations within functions - and you can get closures at more than one level.
  • I think normally a closure is the term for both the function along with the variables that are captured. Note that I do not use that definition in this article!
  • I suspect that closures in JavaScript differ from those normally found in functional languages.

Links

Thanks

If you have just learnt closures (here or elsewhere!), then I am interested in any feedback from you about any changes you might suggest that could make this article clearer. Send an email to morrisjohns.com (morris_closure @). Please note that I am not a guru on JavaScript - nor on closures.

Thanks for reading.

link
12  
Brillant. I espacially love : "A closure in JavaScript is like keeping a copy of the all the local variables, just as they were when a function exited." – e-satis Sep 21 '08 at 14:38
2  
though of course if the nice link goes to nirvana that answer is pretty usless :/ – Florian Bösch Sep 21 '08 at 14:47
4  
35  
Stackoverflow was created precisely in order NOT to have to dig trough links and mailinglists and following clues in order to arrive at the solution, please don't foobar that goal. – Florian Bösch Sep 23 '08 at 11:10
5  
Moved to new location on his site: blog.morrisjohns.com/javascript_closures_for_dummies.html – Dan Esparza Nov 13 '09 at 19:10
show 9 more comments
feedback

I'm a big fan of analogy and metaphor when explaining difficult concepts... so let me try my hand with a story...

Once upon a time:

There was a princess...

function princess() {

She lived in a wonderful world full of adventures. She met her Prince Charming, road around her world on a unicorn, battled dragons, encountered talking animals, and many other fantastical things.

    var adventures = [];

    function princeCharming() { /* ... */ }

    var unicorn = { /* ... */ },
        dragons = [ /* ... */ ],
        squirrel = "Hello!";

But she would always have to return back to her dull world of chores and grown-ups.

    return {

And she would often tell them of her latest amazing adventure as a princess.

        story: function() {
            return adventures[adventures.length - 1];
        }
    };
}

But all they would see is a little girl...

var littleGirl = princess();

...telling stories about magic and fantasy.

littleGirl.story();

And even though the grown-ups knew of real princesses, they would never believe in the unicorns or dragons because they could never see them. The grown-ups said that they only existed inside the little girl's imagination.

But we know the real truth; that the little girl with the princess inside...

...is really a princess with a little girl inside.

link
7  
Ummm......what? – lwburk Jun 24 '11 at 19:19
11  
Haha, very nice! Pretty useless in order to explain closures to someone who doesn't already know, yet very nice. :-) – T-Bull Jun 26 '11 at 22:31
7  
+1 for dragons & unicorns – Prisoner ZERO Sep 8 '11 at 11:09
10  
Very creative, and this also highlights a topic that's not always mentioned: that closures can be used to keep private data private from outside code. In this case, the "adults" (any code outside the princess function) have no way to access the "unicorn" (data in the closure), even though it really does exist, and the little princess (function) has full access to it. So the lesson for the 6-year old is that a closure is like little "world" that you can go into from time-to-time, containing things that are not visible from "the outside". Well Done. – Nick Perkins Sep 21 '11 at 14:02
6  
This is actually quite clever. And would definitely fit the criteria of explaining this to a 6 year old. +1. – Master Morality Oct 31 '11 at 14:08
show 5 more comments
feedback

Closures are hard to explain because they are used to make some behaviour work that everybody intuitively expects to work anyway. I find the best way to explain them (and the way that I learned what they do) is to imagine the situation without them:

var bind = function(x) {
    return function(y) { return x + y; };
}

var plus5 = bind(5);
alert(plus5(3));

What would happen here if JavaScript didn't know closures? Just replace the call in the last line by its method body (which is basically what function calls do) and you get:

alert(x + 3);

Now, where's the definition of x? We didn't define it in the current scope. The only solution is to let plus5 carry its scope (or rather, its parent's scope) around. This way, x is well-defined and it is bound to the value 5.

link
3  
What is being described here is currying. Its great, its functional but its entirely opaque to the target 6 year old. – AnthonyWJones Sep 21 '08 at 20:25
7  
It's true that I've used currying as an example but that's not the point here and entirely irrelevant to the explanation. – Konrad Rudolph Sep 22 '08 at 14:12
4  
so in a pseudo-language, it is basically like alert(x+3, where x = 5). The where x = 5 is the closure. Am I right? – Jus12 Dec 22 '10 at 9:52
2  
@Jus12: exactly. Behind the scenes, a closure is just some space where current variable values (“bindings”) are stored, as in your example. – Konrad Rudolph Dec 22 '10 at 11:28
1  
brain explosion! – danp Jul 16 '11 at 13:05
show 1 more comment
feedback

This is an attempt to clear up several (possible) misunderstandings about closures that appear in some of the other answers.

  • A closure is not only created when you return an inner function. In fact, the enclosing function does not need to return at all in order for its closure to be created. You might instead assign your inner function to a variable in an outer scope, or pass it as an argument to another function where it could be called immediately or any time later. Therefore, the closure of the enclosing function is probably created as soon as the enclosing function is called since any inner function has access to that closure whenever the inner function is called, before or after the enclosing function returns.
  • A closure does not reference a copy of the old values of variables in its scope. The variables themselves are part of the closure, and so the value seen when accessing one of those variables is the latest value at the time it is accessed. This is why inner functions created inside of loops can be tricky, since each one has access to the same outer variables rather than grabbing a copy of the variables at the time the function is created or called.
  • The "variables" in a closure include any named functions declared within the function. They also include arguments of the function. A closure also has access to its containing closure's variables, all the way up to the global scope.
  • Closures use memory, but they don't cause memory leaks since JavaScript by itself cleans up its own circular structures that are not referenced. IE memory leaks involving closures are created when it fails to disconnect DOM attribute values that reference closures, thus maintaining references to possibly circular structures.
link
1  
By the way, I added this "answer" with clarifications not to address the original question directly. Instead, I hope that any simple answer (for a 6-year old) doesn't introduce incorrect notions about this complex subject. E.g. the popular wiki-answer above says "A closure is when you return the inner function." Aside from being grammatically wrong, that is technically wrong. – dlaliberte Jul 21 '11 at 14:15
+1 for clarifying named functions. This should be used more often. – SystemParadox Mar 16 at 15:14
feedback

A closure is much like an object. It gets instantiated whenever you call a function.

The scope of a closure in JavaScript is lexical, which means that everything that is contained within the function the closure belongs to, has access to any variable that is in it.

A variable is contained in the closure if you

  1. assign it with var foo=1; or
  2. just write var foo;

If an inner function (a function contained inside another function) accesses such a variable without defining it in its own scope with var, it modifies the content of the variable in the outer closure.

A closure outlives the runtime of the function that spawned it. If other functions make it out of the closure/scope in which they are defined (for instance as return values), those will continue to reference that closure.

Example

function example(closure){
    // define somevariable to live in the closure of example
    var somevariable='unchanged';

    return {
        change_to:function(value){
            somevariable = value;
        },
        log:function(value){
            console.log('somevariable of closure %s is: %s',
                closure, somevariable);
        }
    }
}

closure_one = example('one');
closure_two = example('two');

closure_one.log();
closure_two.log();
closure_one.change_to('some new value');
closure_one.log();
closure_two.log();

Output

somevariable of closure one is: unchanged
somevariable of closure two is: unchanged
somevariable of closure one is: some new value
somevariable of closure two is: unchanged
link
feedback

Taking the question seriously, we should find out what a typical 6-year-old is capable of cognitively, though admittedly, one who is interested in JavaScript is not so typical. On http://www.howkidsdevelop.com/5-7years.html it says:

Your child will be able to follow two-step directions. For example, if you say to your child, "Go to the kitchen and get me a trash bag" they will be able to remember that direction.

We can use this example to explain closures, as follows:

The kitchen is a closure that has a local variable, called trashBags. There is a function inside the kitchen called getTrashBag that gets one trash bag and returns it.

We can code this in JavaScript like this:

function Kitchen () {
  var trashBags = [1, 2, 3]; // only 3 at first

  function getTrashBag() {
    return trashBags.pop();
  }
  // Make getTrashBag be visible outside the kitchen.
  this.getTrashBag = getTrashBag; 
}

var kitchen = new Kitchen();
kitchen.getTrashBag(); // returns 3
kitchen.getTrashBag(); // returns 2
kitchen.getTrashBag(); // returns 1

Further points that explain why closures are interesting:

  • Each time the Kitchen constructor is called with new Kitchen(), a new closure is created.
  • The trashBags variable is local to the inside of each kitchen and is not accessible outside, but the inner function getTrashBag does have access to it.
  • Every function call creates a closure, but there is no need to keep the closure around unless there is some inner function that has access inside the closure, and that could be called from outside the closure. Making getTrashBag be a property of the kitchen does that here.
link
1  
+1 for making me smile – e-satis Sep 8 '11 at 15:21
1  
This is not only amusing and easy to understand, but technically correct. I am curious to find out how well this example works with actual 6-year-olds. – dlaliberte Mar 5 at 15:54
feedback

I wrote a blog post a while back explaining closures. Here's what I said about closures in terms of why you'd want one.

Closures are a way to let a function have persistent, private variables - that is, variables that only one function knows about, where it can keep track of info from previous times that it was run.

In that sense, they let a function act a bit like an object with private attributes.

Full post:

http://sleeplessgeek.blogspot.com/2009/12/so-what-are-these-closure-thingys.html

link
I do really like your article. I give your answer an 'Up'vote. But your answer describes one benefit of closure, more than explaining what it is. – Khnle Jul 8 '11 at 21:10
So could the main benefit of closures could be emphasized with this example? Say I have a function emailError(sendToAddress, errorString) I could then say devError = emailError("devinrhode2@googmail.com", errorString) and then have my own custom version of a shared emailError function? – Devin G Rhode Jul 31 '11 at 6:42
feedback

Can you explain closures to a 5 year old?*

I still think Google's explanation works very well and is concise:

/*
* When a function is defined in another function and it
*    has access to the outer function's context even after
*    the outer function returns
* An important concept to learn in Javascript
*/

function outerFunction(someNum) {
  var someString = 'Hai!';
  var content = document.getElementById('content');
  function innerFunction() {
    content.innerHTML = someNum + ': ' + someString;
    content = null; // IE memory leak for DOM reference
  }
  innerFunction();
}

*A C# question

link
3  
If you read the description, you'll see that your example is not correct. The call to innerFunction is within the scope of the outer function, and not, as the description says, after the outer function returns. Whenever you call outerFunction, a new innerFunction is created and then used in scope. – Moss Dec 6 '10 at 16:11
@Moss that's not my comments, they're a Google developer's – Chris S Dec 6 '10 at 23:09
1  
Seeing that innerFunction is not referenced outside outerFunction's scope, is the interpreter smart enough to see that it needs no closure? – syockit Mar 7 '11 at 5:49
The code is "correct", as an example of a closure, even though it doesn't address the part of the comment about using the closure after the outerFunction returns. So it is not a great example. There are many other ways a closure could be used that don't involve returning the innerFunction. e.g. innerFunction could be passed to another function where it is called immediately or stored and called some time later, and in all cases, it has access to the outerFunction context that was created when it was called. – dlaliberte Aug 4 '11 at 14:01
feedback

example for the first point by dlaliberte

A closure is not only created when you return an inner function. In fact, the enclosing function does not need to return at all. You might instead assign your inner function to a variable in an outer scope, or pass it as an argument to another function where it could be used immediately. Therefore, the closure of the enclosing function probably already exists at the time that enclosing function was called since any inner function has access to it as soon as it is called.

var i; 
function foo(x) {   
  var tmp = 3;   
  i = function (y) {
        alert(x + y + (++tmp)); 
  }
 } 
 foo(2);
 i(3);
link
2  
FYI: running the above shows=> 9 – JJ Rohrer May 19 '10 at 20:24
Small clarification about a possible ambiguity. When I said "In fact, the enclosing function does not need to return at all." I didn't mean "return no value" but "still active". So the example doesn't show that aspect, though it shows another way the inner function can be passed to the outer scope. The main point I was trying to make is about the time of creation of the closure (for the enclosing function), since some people seem to think it happens when the enclosing function returns. A different example is required to show that the closure is created when a function is called. – dlaliberte Jul 21 '11 at 14:03
feedback

To follow up on Ali's post, refer to Leak Free Javascript Closures for more information on memory leaks related to closures.

Javascript closures can be a powerful programming technique. Unfortunately in Internet Explorer they are a common source of memory leaks. Therefore I propose a method to create closures that don't leak memory.

link
13  
Eliminate IE. Hundreds of other problems solved along with this one. – Rob Jun 25 '11 at 13:24
2  
The link to the article is broken – Travis J Apr 9 at 10:07
feedback

Wikipedia on closures:

In computer science, a closure is a function together with a referencing environment for the nonlocal names (free variables) of that function.

Technically, in Javascript, every function is a closure. It always has an access to variables defined in the surrounding scope

Since scope-defining construction in Javascript is a function, not a code block like in many other languages, what we usually mean by closure in Javascript is a fuction working with nonlocal variables defined in already executed surrounding function.

Closures are often used for creating functions with some hidden private data (but it's not always the case).

var db = (function() {
  // create a hidden object, which will hold the data
  // it's inaccessible from outside
  var data = {};
  // make a function, which will provide some access to the data
  return function(key, val) {
    if (val === undefined) { return data[key] } // get
    else { return data[key] = val } // set
  }
  // we are calling the anonymous surrounding function,
  // returning the above inner function, which is a closure
})();

db('x')    // -> undefined
db('x', 1) // set x to 1
db('x')    // -> 1
// it's impossible to access the data object itself
// we are able to get or set individual items

The example above is using an anonymous function, which was executed once. But it does not have to be. It can be named (e.g. mkdb) and executed later, generating a database function each time it is invoked. Every generated function will have its own hidden database object. Other usage example of closures is when we don't return a function, but an object containing multiple functions for different purposes, each of those function having access to the same data.

link
Because we know how much 6-year-olds love Wikipedia ;-) – Josh Sep 7 '11 at 12:47
"Technically, in Javascript, every function is a closure. It always has an access to variables defined in the surrounding scope" Mind blown. – StuperUser Dec 3 '11 at 13:35
feedback

Here's a link on JavaScript closures and the memory leak in Internet Explorer.

http://zadasnotes.blogspot.com/2010/10/leaky-ie-javascript-closures.html

Quote:

When an inner function has access and uses variables of an outer function this is called a closure.

link
feedback

It's like a kind of permanent stack frame.

Oh wait.. urm.. let me see... damn it...

link
I love how the second link now points back to this question. Care to try your hand at explaining recursion to a 6-year-old? ;-) – Josh Sep 7 '11 at 12:50
feedback

You're having a sleep over and you invite Dan. You tell Dan to bring one XBox controller.

Dan invites Paul. Dan asks Paul to bring one controller. How many controllers were brought to the party?

function sleepOver(howManyControllersToBring) {

    var numberOfDansControllers = howManyControllersToBring;

    return function danInvitedPaul(numberOfPaulsControllers) {
        var totalControllers = numberOfDansControllers + numberOfPaulsControllers;
        return totalControllers;
    }
}

var howManyControllersToBring = 1;

var inviteDan = sleepOver(howManyControllersToBring);

// The only reason Paul was invited is because Dan was invited. 
// So we set Paul's invitation = Dan's invitation.

var danInvitedPaul = inviteDan(howManyControllersToBring);

alert("There were " + danInvitedPaul + " controllers brought to the party.");
link
feedback

I put together an interactive JavaScript tutorial to explain how closures work. http://nathansjslessons.appspot.com/

Here's one of the examples:

var create = function (x) {
    var f = function () {
        return x; // we can refer to x here!
    };
    return f;
};
// create takes one argument, creates a function

var g = create(42);
// g is a function that takes no arguments now

var y = g();
// y is 42 here
link
feedback

From my (pretty awesome) bookmarks: http://jibbering.com/faq/faq_notes/closures.html#clClose. I don't think that I could explain it any better.

link
feedback

A closure is where an inner function has access to variables in it's outer function. That's probably the simplest one-line explanation you can get for closures.

link
12  
That's only half the explanation. The important thing to note about closures is that if the inner function is still being referred to after the outer function has exited, the old values of the outer function are still available to the inner one. – pcorcoran Sep 21 '08 at 22:29
feedback

JavaScript functions can access their:

  1. arguments
  2. locals (i.e., their local variables and local functions)
  3. environment, which includes:
    • globals, including the DOM
    • anything in outer functions

If a function accesses its environment, then the function is a closure.

Note that outer functions are not required, though they do offer benefits I don't discuss here. By accessing data in its environment, a closure keeps that data alive. In the subcase of outer/inner functions, an outer function can create local data and eventually exit, and yet, if any inner function(s) survive after the outer function exits, then the inner function(s) keep the outer function's local data alive.

Example of a closure that uses the global environment:

Imagine that the StackOverflow Vote-Up and Vote-Down button events are implemented as closures, voteUp_click and voteDown_click, that have access to external variables isVotedUp and isVotedDown, which are defined globally. (For simplicity's sake, I am referring to StackOverflow's Question Vote buttons, not the array of Answer Vote buttons.) When the user clicks the VoteUp button, the voteUp_click function checks whether isVotedDown == true to determine whether to vote up or merely cancel a down vote. Function voteUp_click is a closure because it is accessing its environment.

var isVotedUp = false;
var isVotedDown = false;

function voteUp_click()
{
  if (isVotedUp)
    return;
  else if (isVotedDown)
    SetDownVote(false);
  else
    SetUpVote(true);
}

function voteDown_click()
{
  if (isVotedDown)
    return;
  else if (isVotedUp)
    SetUpVote(false);
  else
    SetDownVote(true);
}

function SetUpVote(var status)
{
  isVotedUp = status;
  // do some css stuff to Vote-Up button
}

function SetDownVote(var status)
{
  isVotedDown = status;
  // do some css stuff to Vote-Down button
}

All four of these functions are closures as they all access their environment.

link
feedback

I know there are plenty of solutions already, but I guess that this small and simple script can be useful to demonstrate the concept:

// makeSequencer will return a "sequencer" function
var makeSequencer = function() {
    var _count = 0; // not accessible outside this function
    var sequencer = function () {
        return _count++;
    }
    return sequencer;
}

var fnext = makeSequencer();
var v0 = fnext();     // v0 = 0;
var v1 = fnext();     // v1 = 1;
var vz = fnext._count // vz = undefined
link
feedback

protected by Community Sep 19 '11 at 16:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.