programming_languages:js:closure

Closure

“A closure is the combination of a function and the lexical environment within which that function was declared.” https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures

Example

function makeFunc() {
  var name = 'Mozilla';
  function displayName() {
    alert(name);
  }
  return displayName;
}

var myFunc = makeFunc();
myFunc();

DisplayName maintains a reference to its lexical environment.

  • programming_languages/js/closure.txt
  • Last modified: 2019/06/19 12:44
  • by phreazer