This content originally appeared on DEV Community and was authored by The Nerdy Dev
Hey guys 👋🏻,
In this article, let us talk about Closures in Javascript.
In this article, we will understand
✔ What are Closures ?
✔ Code Example with explanation.
✔ Conclusion
What are Closures ?
Before understanding what a closure is, let us revisit the concept of functions. From what we know about functions in JavaScript is that every function in JavaScript has a reference to its outer lexical environment.
This means that it registers the outer lexical environment and the variables present in there and it remembers the values of these variables.
=> This also means that the reference that gets setup enables the code inside the inner function to see variables declared outside the inner function, regardless of when and where the function was called.
Explanation
In the above code, we have a calculateSimpleInterest
function that takes on a principal
value inside which we have function useRateAndTime
that takes on rate
and time
and computes the simple interest for us. At the bottom of the calculateSimpleInterest
function, we return the useRateAndTime
function.
So for our calculateSimpleInterest
function, useRateAndTime
forms a closure with the lexical environment of the execution context which gets created when calculateSimpleInterest
function is invoked, closing over the variables defined inside the outer function (if any).
Let us see the usage
With the invocation of calculateSimpleInterest
function using a value of 10000 as principal
, a new function useRateAndTime
gets created and in it the value of principal
gets locked and is returned. Now we have the useRateAndTimeFn
constant in which we have the returned function having the principal
locked in. So we call the inner function now by passing the value of rate
and time
. Lastly we store the returned value in a variable with the name of result
.
Conclusion
✔ Use closures if you want a function to always have access to a private piece of state.
✔ In JavaScript, if you declare a function within another function, then the local variables of the outer function can remain accessible even after returning from the outer function.
So this is it for this article. Thanks for reading.
If you enjoy my articles, consider following me on Twitter for more interesting stuff :
⚡Twitter : https://twitter.com/The_Nerdy_Dev
Don't forget to leave a like if you loved the article. Also share it with your friends and colleagues.
PS - If you are looking to learn Web Development, I have curated a FREE course for you on my YouTube Channel, check the below article :
(2021) - Web Developer Full Course : HTML, CSS, JavaScript, Node.js and MongoDB
The Nerdy Dev ・ Apr 28 ・ 2 min read
Looking to learn React.js with one Full Project, check this out :
Learn React with one BIG Project [NOTES included] - Demo and Video Link
The Nerdy Dev ・ Jun 10 ・ 1 min read
This content originally appeared on DEV Community and was authored by The Nerdy Dev
The Nerdy Dev | Sciencx (2021-11-23T13:42:54+00:00) Demystifying Closures in JavaScript. Retrieved from https://www.scien.cx/2021/11/23/demystifying-closures-in-javascript/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.