The linked video explains why closure can inflict some performance hits starting about 11:08.
Basically, he's saying that for each nested function, it adds another object to the scope chain and therefore accessing variables outside of the closure will take even longer.
To find the value associated with a variable, the Javascript interprer follows this process:
- search the local scope object
- if 1 didn't work, search the parent scope object
- if 2 didn't work, search the parent's parent scope object
- keep searching parent scopes until
- you search the global scope
- and if it's still not found, throw an undefined variable error.
In a normal function, to find a variable, you only have to search at the top of the scope chain. A closure, on the other hand, to find parent variables will have to search down the scope chain, sometimes several levels deep. For example, if you had some closures like this (note that this is a very contrived example):
function a (x) {
function b (y) {
return (function (z) {
return x + y + z;
})(y + y);
}
return b(x + 3);
}
From the innermost function, to evalueate the expression x + y + z, it has to traverse up three levels in the scope chain to find x, then it has to traverse up the scope chain again two levels to find y, and then finally once to find z. In total, it had to search six objects in the scope chain to return the final result.
This is unavoidable in closures, because closures always have to access parent variables. If they didn't there would be no purpose in using a closure.
Also note that in Javascript, there is a significant overhead in creating functions, especially closures. Take, for example, this fairly simple closure:
function a(x) {
return function (y) {
return x + y;
}
}
And you call it several different times, like this
var x = a(1);
var y = a(2);
var z = a(3);
alert(x(3)); // 4
alert(y(3)); // 5
alert(z(3)); // 6
You'll notice that the function returned from a has to keep what was passed as an argument in the parent function even after the parent function has already been called. This means that the interpreter has to keep in memory what you passed in to every function that you have called so far.