From 018c15f86233a6ca817151747fa56b5ef043014c Mon Sep 17 00:00:00 2001 From: CodeGuage <99533223+codeguage-code@users.noreply.github.com> Date: Sun, 4 Sep 2022 16:28:40 +0500 Subject: [PATCH] Added description and resources to Closures - JavaScript Roadmap (#1670) * Added resources to closures * Added more info and made some grammatic changes. --- .../105-scope-and-function-stack/102-closures.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/109-javascript-functions/105-scope-and-function-stack/102-closures.md b/content/roadmaps/106-javascript/content/109-javascript-functions/105-scope-and-function-stack/102-closures.md index 2bd3198cd..9a0fe7195 100644 --- a/content/roadmaps/106-javascript/content/109-javascript-functions/105-scope-and-function-stack/102-closures.md +++ b/content/roadmaps/106-javascript/content/109-javascript-functions/105-scope-and-function-stack/102-closures.md @@ -1 +1,6 @@ -# Closures \ No newline at end of file +# Closures + +Function closures are one of the most powerful, yet most misunderstood, concepts of JavaScript that are actually really simple to understand. A closure refers to a function along with its lexical scope. It is essentially what allows us to return a function A, from another function B, that remembers the local variables defined in B, even after B exits. The idea of closures is employed in nearly every other JavaScript program, hence it's paramount for any JavaScript developer to know of it really well. + +Free Content +JavaScript Closures - The Simplest Explanation