Reputation: 1672
var inner = function() { console.log(x); }
// test 1
(function(cb) { var x = 123; cb(); })(inner);
// test 2
(function(cb) { var x = 123; cb.apply(this); })(inner);
// test 3
(function(cb) { var x = 123; cb.bind(this)(); })(inner);
// test 4
(function(cb) { cb.bind({x: 123})(); })(inner);
All tests result in: ReferenceError: x is not defined
Do someone know how it is possible to access 'x' as a local variable inside the callback?
Upvotes: 15
Views: 35974
Reputation: 2656
This helped me understand var more (var vs let in the context of closure) :
Example 1: Using let
function makeFunctionArray() {
const arr = [];
for (let i = 0; i < 5; i++) {
arr.push(function () {
console.log(i);
});
}
return arr;
}
const functionArr = makeFunctionArray();
functionArr[0]();
Iterations:
Iteration 1 (i = 0):
arr.push(function () { console.log(i); }); (pushes a function that logs i when called, where i is captured as 0 during this iteration).
Iteration 2 (i = 1):
arr.push(function () { console.log(i); }); (pushes a function that logs i when called, where i is captured as 1 during this iteration).
Iteration 3 (i = 2):
arr.push(function () { console.log(i); }); (pushes a function that logs i when called, where i is captured as 2 during this iteration).
Iteration 4 (i = 3):
arr.push(function () { console.log(i); }); (pushes a function that logs i when called, where i is captured as 3 during this iteration).
Iteration 5 (i = 4):
arr.push(function () { console.log(i); }); (pushes a function that logs i when called, where i is captured as 4 during this iteration).
Return and Execution: const functionArr = makeFunctionArray(); (function array is created and assigned to functionArr). functionArr0; (calls the first function in the array, which logs the captured value of i during its iteration, i.e., 0).
Example 2: Using var
unction makeFunctionArray() {
const arr = [];
for (var i = 0; i < 5; i++) {
arr.push(function () {
console.log(i);
});
}
return arr;
}
const functionArr = makeFunctionArray();
functionArr[0]();
Iterations:
Iteration 1 (i = 0): arr.push(function () { console.log(i); }); (pushes a function into the array that references the shared variable i).
Iteration 2 (i = 1):
arr.push(function () { console.log(i); }); (pushes another function into the array that still references the shared variable i).
arr.push(function () { console.log(i); }); (similarly, pushes another function into the array that still references the shared variable i).
arr.push(function () { console.log(i); }); (continues the pattern, pushing a function that references the shared variable i).
arr.push(function () { console.log(i); }); (pushes the final function into the array, all functions still referencing the shared variable i). Return and Execution:
Return and Execution: const functionArr = makeFunctionArray(); (function array is created and assigned to functionArr). functionArr0; (calls the first function in the array, which references the shared variable i, whose final value after the loop is 5). Output: 5
My stupid explanation : var i is not evaluated and left until after the calling of the function in the array, it is referenced as i and not assigned a value in the loop(unlike the const it is assigned a value then and there), the value var is assigned is the latest change we make to i, which is finishing the for loop at 4 and then it is dead by the end of the function = 5; it exits the loop at 5; so basically var is the value at which it dies. that's Javascript behavior right there don't blame me.
Practically : if you have a function that references a var variable declared outside of it, you should consider the latest assignment or change to that variable to determine its value when the function is called. This is particularly important in scenarios like loops where the variable may be modified multiple times before the function is invoked. Explanation : With var, there is only one variable i that is shared among all functions pushed into the array. All the functions inside the array form closures that reference the same i. When any function in the array is called (e.g., functionArr0) after the loop has completed, it will print the current value of the shared variable i, which is 5. This behavior occurs because var has function scope rather than block scope, and it does not create a new i for each iteration of the loop. Instead, there's a single i that gets updated in each iteration, and all functions in the array reference the same i.
Upvotes: 0
Reputation: 83
Have you tried using events? Emit an event inside the anonymous function, then subscribe to it in your own function somewhere else that carries out your logic.
Upvotes: 0
Reputation: 26
You could redefine the callback function in the current scope:
var inner = function() { console.log(x); }
(function(cb) { var x = 123; eval('cb = ' + cb.toString()); cb(); })(inner);
// or
(function(cb) { var x = 123; eval('(' + cb.toString() + ')')(); })(inner);
This will not work if the function relies on anything in the scope in which it was originally defined or if the Javascript file has been minified. The use of eval
may introduce security, performance, and code quality issues.
Upvotes: 0
Reputation: 4960
Fact: when you do var inner = function() { console.log(x); }
in your first line, x
is not defined. Why? Because, inside your inner
function, there's no local declaration of x (which would be done with var x = something
). The runtime will then look up in the next scope, that is the global scope. There isn't, also, a declaration of x
, so x
is also not defined there.
The only places where there is a variable called x
are inside each one of your 4 IIFEs following. But inside the IIFEs, each x
is a different variable, in a different scope. So, if what you want is to console.log()
the x
defined inside each IIFE, you are taking the wrong approach.
Keep in mind that, when you define inner
, you are capturing the environment inside the function's closure. It means that, whatever value could x
have there (in the declaration of the function), would be the available value to the x
variable later, when the inner
function would be used. The fact that your x
there is not defined is only an accessory, and is not what is causing the undesired behavior.
So, what happens is that when you call your inner
function inside any of your IIFEs, the x
referred to inside the inner
function declaration is a captured value of what x
had as a value when the function was defined, not the value that x
has now in the scope where the function is currently being called. This is what is called lexical scope.
To solve this, you would have to pass the value that you want to console.log()
inside the inner
function as a parameter to the inner
function, as so:
var inner = function(x) { console.log(x); }
// test 1
(function(cb) { var x = 123; cb(x); })(inner);
Upvotes: 12
Reputation: 55792
The only way to access the local variable x
in the callback, is to pass it as an argument:
var inner = function(some_var) { console.log(some_var); }; //logs 123
(function(cb) { var x = 123; cb(x); })(inner);
OR
var inner = function(some_var) { console.log(some_var); }; //logs 123
(function(cb) { var x = 123; cb.apply(this,[x]); })(inner);
OR
var inner = function(some_var) { console.log(some_var); }; //logs 123
(function(cb) { var x = 123; cb.call(this,x); })(inner);
FURTHER
Because JS is lexically scoped, trying to reference the local variable after the anonymous function has finished executing is impossible by any other means. If you don't pass it as an argument to make it available elsewhere, JS will see it as non-reachable and it will be eligible for garbage collection.
Upvotes: 4