up vote 447 down vote favorite
375
share [g+] share [fb]

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|improve this question

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.

19 Answers

up vote 426 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.

(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|improve this answer
11  
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
5  
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
15  
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
12  
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
6  
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 is the article that finally got me to understand closures. The explanation posted there is much better than anything I could write here.

link|improve this answer
8  
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
1  
though of course if the nice link goes to nirvana that answer is pretty usless :/ – Florian Bösch Sep 21 '08 at 14:47
3  
23  
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
3  
Moved to new location on his site: blog.morrisjohns.com/javascript_closures_for_dummies.html – Dan Esparza Nov 13 '09 at 19:10
show 7 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|improve this answer
2  
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
I agree. Giving the functions meaningful names instead of the traditional "foobar" ones also helps me a lot. Semantics counts. – Ishmael Apr 8 '10 at 14:16
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
1  
@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
show 1 more comment
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|improve this answer
3  
Ummm......what? – lwburk Jun 24 '11 at 19:19
4  
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
3  
+1 for dragons & unicorns – Prisoner ZERO Sep 8 '11 at 11:09
3  
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
1  
If you'd like to beat the hope out of the 6 year old, I'd change the happily ever after to something more bleak and somber – Jerry Cheung Oct 22 '11 at 21:55
show 3 more comments
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. 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.
  • 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 by accessing one of those variables is the latest value at the time it is accessed. This is why inner functions inside of loops can be tricky, since they all access the same outer variables.
  • The "variables" in a closure include named functions declared (at the top level) within the function. It also includes function arguments. The 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 itself cleans up circular structures that have no references. IE memory leaks involving closures are caused by not disconnecting DOM attribute values that reference closures, thus maintaining references to possibly circular structures.
link|improve this answer
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
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|improve this answer
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|improve this answer
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

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|improve this answer
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

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|improve this answer
6  
Eliminate IE. Hundreds of other problems solved along with this one. – Rob Jun 25 '11 at 13:24
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|improve this answer
1  
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

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|improve this answer
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|improve this answer
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|improve this answer
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

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();
  }
  this.getTrashBag = getTrashBag;
}

var kitchen = new Kitchen();
kitchen.getTrashBag(); // returns 3
kitchen.getTrashBag(); // returns 2
kitchen.getTrashBag(); // returns 1
link|improve this answer
1  
+1 for making me smile – e-satis Sep 8 '11 at 15:21
feedback

It's like a kind of permanent stack frame.

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

link|improve this answer
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

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|improve this answer
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|improve this answer
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|improve this answer
10  
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|improve this answer
feedback

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