Javascript closure definition says :
A "closure" is an expression (typically a function) that can have free variables together with an environment that binds those variables (that "closes" the expression).
Can some one explain to me the concept of free variables ? Is this concept Javascript specific or applies to other languages also ?
Free variables are simply the variables that are neither locally declared nor passed as parameter.
Source :
In javascript closures, those are simply the variables that the function takes (read and write) in the enclosing scope where is declared the closure or in a parent scope.
Look at this real world example :
In this example a closure points from the
setDim
function towards the variable_this
declared in the enclosing scope (the_ensureInit
function). This variable isn't declared insetDim
nor passed. It's a "free variable".Note that
_this
doesn't become a variable of the functionsetDim
: another function declared in the same scope would share the same variable.