const secureBooking = function(){ let passengerCount = 0; return function(){ passengerCount++; console.log(`${passengerCount} passengers`); } } const booker = secureBooking(); booker(); booker(); booker();
Defn:闭包是创建 fn 的 EC 的封闭变量环境,即使在该 EC 消失之后也是如此。
此外,闭包允许 fn 访问其父 fn 的所有变量,即使在父 fn 返回之后也是如此。 fn 保留对其外部作用域的引用,从而始终保留作用域链。
闭包确保 fn 不会失去与 fn 诞生时存在的变量的连接。它就像一个 fn 随身携带的背包。这个背包具有创建 fn 的环境中存在的所有变量。
我们不必手动创建闭包。此外,我们甚至无法显式访问封闭变量。闭包不是有形的 JS 对象,即我们无法访问闭包并从中获取变量。它是 fn 的内部属性。要查看背包,“console.dir(booker);”
[[Scope]] 将向您展示此 fn 调用的 VE。
[[]] 表示它是一个内部属性,我们无法从代码中访问它。
我们总是不需要从另一个 fn 返回一个 fn 来创建闭包。在下面的示例中,变量“f”甚至没有在 fn 内定义,因为它在全局范围内。即使在 g() 完成其 EC 之后,它也能够访问“a”变量。 ‘a’现在在‘f’的背包里。
let f; const g = function(){ const a = 23; f = function() { console.log(a*2); // 46 }; }; const h = function(){ const b = 777; f = function(){ console.log(b*2); // 1554 }; }; g(); f(); console.dir(f); // f fn is reassigned using h fn. Hence, old closure value i.e 'a' will be replaced with new value 'b' which can be verified using console.dir(). h(); f(); console.dir(f);
// Boarding Passengers using Closures const boardPassengers = function(n, wait){ const perGroup = n / 3; setTimeout(function(){ console.log(`We are now boarding all ${n} passengers`); console.log(`There are 3 groups, each with ${perGroup} passengers`) }, wait*1000); console.log(`Will start boarding in ${wait} seconds`); } boardPassengers(180, 3);
以上是揭秘 JS 中的闭包的详细内容。更多信息请关注PHP中文网其他相关文章!