DEV Community

Cover image for What are Closures in JavaScript?
Naveen Kamath
Naveen Kamath

Posted on

What are Closures in JavaScript?

Hello Readers,

  • Keep Reading this Blog to know more about Closures ....
  • Lets Look at this Example:
1. function x(){
2.     var a=14;
3.     function y(){
4.         console.log(a);
5.     }
6.     y();
7. }
8. x();
Enter fullscreen mode Exit fullscreen mode
  • The above is a Example for Closure. We already know the output of this program ie a equals 14, but lets understand theory behind this.
  • First we need to Understand what Lexical Scoping(LS) means,

Image description

  • LS means when y() gets called, it tries to find a variable inside local memory but a is not found, so it goes to its Lexical Parent and it finds variable a and thus console logs it. This is called Lexical Scoping.
  • A Function bundled together with its Lexical Environment forms Closure. Here the Function y was bundled to variables of x.
  • so in One Way, This is what Closure is !!!!

Closure Deep Dive

  • Consider the Example:
1. function x(){
2.     var a=14;
3.     function y(){
4.         console.log(a);
5.     }
6.     return y;
7. }
8. var z=x();
9. z();
Enter fullscreen mode Exit fullscreen mode
  • what is the output of the above program?
  • The answer is when z() called in line9 returns 14, But how is that possible????
  • We Know that JS is Synchronus ie after running line 8, x is Deleted ie X() Execution Context(EC) gets Deleted in Call Stack.
  • To know more about EC, Read my EC Blog
  • In the above Example, 'a' is not in Global Scope and x gets deleted after line 8, So how program console logs 14. Here Closure comes into picture.
  • When Functions are Returned from Another Function, They still maintain their Lexical Scoping.
  • When y is returned, not just function code gets returned but Closure enclosed function along with its Lexical Environment gets returned and was assigned to z. This is the use case of Closures.
  • Other Uses of Closures:
  1. Currying
  2. setTimeout
  3. memoize etc
  • Thanks for Reading my Blog folks, Have a great Day :)

Top comments (15)

Collapse
 
adithyahere profile image
Adithya

Short and clear blog buddy!👏

Collapse
 
naveenkamath profile image
Naveen Kamath

Thank you :)

Collapse
 
tripol profile image
Ekanem • Edited

Thanks for the article. I have a question though. Why was the function returned when y instead of y() was called?

Collapse
 
naveenkamath profile image
Naveen Kamath

Because I wanted to return the function y and not to invoke or call it .
y-->returning function y.
y()--> Invoking or calling the function.

Collapse
 
tripol profile image
Ekanem

Thank you. I understand better now

Thread Thread
 
naveenkamath profile image
Naveen Kamath

Glad you liked it :)

Collapse
 
andrewbaisden profile image
Andrew Baisden

Nice and concise 👍

Collapse
 
naveenkamath profile image
Naveen Kamath

Thank you :)

Collapse
 
liamemma profile image
Liam Emma

Good Information thanks

Collapse
 
naveenkamath profile image
Naveen Kamath • Edited

Glad you Liked it :)

Collapse
 
jamstra profile image
Jam Straw

Nice Information.

Collapse
 
naveenkamath profile image
Naveen Kamath

Ty and Have a Great Day :)

Collapse
 
jesusmdy profile image
Jesús Ramírez

Clearest impossible!

Collapse
 
lozio1992 profile image
lozio

Thanks,it helps me a lot. Can I translate it into Chinese and share it to more people on juejin.im ?

Collapse
 
naveenkamath profile image
Naveen Kamath

ok