J
Jorge
"Literally" is merely emphasizing the fact that it does not need to be a
variable in ECMAScript implementations:
<http://en.wikipedia.org/wiki/Closure_(programming)>
Shorter, clearer, easier to understand, in a word : (Mmmuch) better,
explanation:
Closure
Functions can be defined inside of other functions. The inner function
has access to the vars and parameters of the outer function. If a
reference to an inner function survives (for example, as a callback
function), the outer function's vars also survive.
http://javascript.crockford.com/survey.html
HTH,