A function in javascript forms a closure by keeping a (hidden) link to its enclosing scope.
Is it possible to access it programmatically when we have the function (as a variable value) ?
The real goal is theoretical but a demonstration could be to list the properties of the closure.
var x = (function(){
var y = 5;
return function() {
alert(y);
};
})();
//access y here with x somehow
yisn't a property onx. – Matt Jun 25 '12 at 16:05alert(y)that's showing you5. Theconsole.log()showsTypeError: Cannot read property 'y' of undefined– Matt Jun 25 '12 at 16:06