This tutorial is out of date and no longer maintained.
Learning a new language involves a series of steps, whereas its mastery is a product of patience, practice, mistakes, and experience.
Some developers will have enough knowledge to deliver on features as per a client’s demand, but it takes more than just that to be a good developer.
A good developer is one who takes time to go back and get a good grasp of a language’s underlying/core concepts.
Today we take a deeper look at JavaScript closures and hope that the knowledge you learn will be beneficial in your projects.
A JavaScript Closure is when an inner function has access to members of the outer function (lexical scope) even when executing outside the scope of the outer function.
Therefore, we cannot afford to talk about closure while leaving out functions and scope.
Scope refers to the extent of visibility of a variable defined in a program. Ways to create scope in JavaScript are through: try-catch blocks
, functions
, the let keyword
with curly braces among others. We mainly have two variations of scope: the global scope and local scope.
Each function in JavaScript creates its own local scope when declared.
This means that whatever is declared inside the function’s local scope is not accessible from the outside. Consider the illustration below:
JavaScript’s Lexical Scope is determined during the compile phase. It sets the scope of a variable so that it may only be called/referenced from within the block of code in which it is defined.
A function declared inside a surrounding function block has access to variables in the surrounding function’s lexical scope.
Invoking an inner function outside of its enclosing function and yet maintain access to variables in its enclosing function (lexical scope) creates a JavaScript Closure.
A Closure allows us to expose a public interface while at the same time hiding and preserving execution context from the outside scope.
Some JavaScript design patterns make use of closures.
One of these well-implemented patterns is the module pattern, this pattern allows you to emulate: private, public, and privileged members.
From our module pattern illustration above, only public methods and properties in the return object will be available outside the closure’s execution context.
All private members will still exist as their execution context is preserved but hidden from the outside scope.
When we pass a function into a setTimeout
or any kind of callback. The function still remembers the lexical scope because of the closure.
Closure and loops
I bet we now have an understanding of closures and can do the following:
Until next time, happy coding.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!