Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript closures - variable scope question

Tags:

I'm reading the Mozilla developer's site on closures, and I noticed in their example for common mistakes, they had this code:

<p id="help">Helpful notes will appear here</p>   <p>E-mail: <input type="text" id="email" name="email"></p>   <p>Name: <input type="text" id="name" name="name"></p>   <p>Age: <input type="text" id="age" name="age"></p>   

and

function showHelp(help) {   document.getElementById('help').innerHTML = help; }  function setupHelp() {   var helpText = [       {'id': 'email', 'help': 'Your e-mail address'},       {'id': 'name', 'help': 'Your full name'},       {'id': 'age', 'help': 'Your age (you must be over 16)'}     ];    for (var i = 0; i < helpText.length; i++) {     var item = helpText[i];     document.getElementById(item.id).onfocus = function() {       showHelp(item.help);     }   } } 

and they said that for the onFocus event, the code would only show help for the last item because all of the anonymous functions assigned to the onFocus event have a closure around the 'item' variable, which makes sense because in JavaScript variables do not have block scope. The solution was to use 'let item = ...' instead, for then it has block scope.

However, what I wonder is why couldn't you declare 'var item' right above the for loop? Then it has the scope of setupHelp(), and each iteration you are assigning it a different value, which would then be captured as its current value in the closure... right?

like image 570
Nick Avatar asked Jul 17 '10 20:07

Nick


2 Answers

Its because at the time item.help is evaluated, the loop would have completed in its entirety. Instead, you can do this with a closure:

for (var i = 0; i < helpText.length; i++) {    document.getElementById(helpText[i].id).onfocus = function(item) {            return function() {showHelp(item.help);};          }(helpText[i]); } 

JavaScript doesn't have block scope but it does have function-scope. By creating a closure, we are capturing the reference to helpText[i] permanently.

like image 194
whitehawk Avatar answered Oct 12 '22 12:10

whitehawk


A closure is a function and the scoped environment of that function.

It helps to understand how Javascript implements scope in this case. It is, in fact, just a series of nested dictionaries. Consider this code:

var global1 = "foo";  function myFunc() {     var x = 0;     global1 = "bar"; }  myFunc(); 

When the program starts running, you have a single scope dictionary, the global dictionary, which might have a number of things defined in it:

{ global1: "foo", myFunc:<function code> } 

Say you call myFunc, which has a local variable x. A new scope is created for this function's execution. The function's local scope looks like this:

{ x: 0 } 

It also contains a reference to its parent scope. So the entire scope of the function looks like this:

{ x: 0, parentScope: { global1: "foo", myFunc:<function code> } } 

This allows myFunc to modify global1. In Javascript, whenever you attempt to assign a value to a variable, it first checks the local scope for the variable name. If it isn't found, it checks the parentScope, and that scope's parentScope, etc. until the variable is found.

A closure is literally a function plus a pointer to that function's scope (which contains a pointer to its parent scope, and so on). So, in your example, after the for loop has finished executing, the scope might look like this:

setupHelpScope = {   helpText:<...>,   i: 3,    item: {'id': 'age', 'help': 'Your age (you must be over 16)'},   parentScope: <...> } 

Every closure you create will point to this single scope object. If we were to list every closure that you created, it would look something like this:

[anonymousFunction1, setupHelpScope] [anonymousFunction2, setupHelpScope] [anonymousFunction3, setupHelpScope] 

When any of these functions executes, it uses the scope object that it was passed - in this case, it's the same scope object for each function! Each one will look at the same item variable and see the same value, which is the last one set by your for loop.

To answer your question, it doesn't matter whether you add var item above the for loop or inside it. Because for loops do not create their own scope, item will be stored in the current function's scope dictionary, which is setupHelpScope. Enclosures generated inside the for loop will always point to setupHelpScope.

Some important notes:

  • This behavior occurs because, in Javascript, for loops do not have their own scope - they just use the enclosing function's scope. This is also true of if, while, switch, etc. If this were C#, on the other hand, a new scope object would be created for each loop, and each closure would contain a pointer to its own unique scope.
  • Notice that if anonymousFunction1 modifies a variable in its scope, it modifies that variable for the other anonymous functions. This can lead to some really bizarre interactions.
  • Scopes are just objects, like the ones you program with. Specifically, they're dictionaries. The JS virtual machine manages their deletion from memory just like anything else - with the garbage collector. For this reason, overuse of closures can create a real memory bloat. Since a closure contains a pointer to a scope object (which in turn contains a pointer to its parent scope object and on and on), the entire scope chain cannot be garbage collected, and has to stick around in memory.

Further reading:

  • Javascript Closures - the full nitty-gritty details if you're interested. Kind of mind-melting.
  • Crockford's simulation of private members using closures - if you can understand how he managed it, then you now understand closures.
  • Crockford's page on Javascript - general good stuff
like image 24
Ender Avatar answered Oct 12 '22 13:10

Ender