We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a809fcc commit 751f0e9Copy full SHA for 751f0e9
Closures/closures.md
@@ -1,5 +1,6 @@
1
# JavaScript Closures: In-Depth Guide with Examples
2
-The concept of **closures** in JavaScript, using the code examples from `closures.js`.
+A closure is a function that has access to the parent scope, even after the parent function has closed.
3
+A closure is formed when a function remembers the variables fro its lexical scope even when the function is executed outside its lexical scope.
4
5
---
6
0 commit comments