# Understanding JavaScript Closure with example

# Joy of getting to the end
> All's well that ends well.

Welcome to the last post of the series [JavaScript: Cracking the Nuts](https://hashnode.com/series/javascript-cracking-the-nuts-ckawn7vc5007dl6s164ogqplz). I want to thank you all for liking the series so far. There is another reason why this article is special to me. This is my 50th 🎉.

If you are new to the series and want to check out previous articles, here are the links,
- [JavaScript Interpreted or Compiled? The Debate is Over](https://blog.greenroots.info/javascript-interpreted-or-compiled-the-debate-is-over-ckb092cv302mtl6s17t14hq1j)
- [Understanding JavaScript Execution Context like never before](https://blog.greenroots.info/understanding-javascript-execution-context-like-never-before-ckb8x246k00f56hs1nefzpysq)
- [JavaScript Hoisting Internals](https://blog.greenroots.info/javascript-hoisting-internals-ckbuavl6f00dllas14hl9ckq1)
- [JavaScript: this is easy and what do you need to know about it!](https://blog.greenroots.info/javascript-this-is-easy-and-what-do-you-need-to-know-about-it-ckca1pqqr00gmmns13n921wib)
- [JavaScript Scope Fundamentals with Tom and Jerry](https://blog.greenroots.info/javascript-scope-fundamentals-with-tom-and-jerry-ckcq723h4007vkxs18dxa97ae)

Let us get started with the understanding of another JavaScript fundamental called `Closure`.

# Introduction to Closure
`Closure` is considered an advanced concept in JavaScript. It may take a while to understand the concept fully. But, do not worry. As you have come across the fundamentals of  [Execution Context](https://blog.greenroots.info/understanding-javascript-execution-context-like-never-before-ckb8x246k00f56hs1nefzpysq), [Scope and Scope Chain](https://blog.greenroots.info/javascript-scope-fundamentals-with-tom-and-jerry-ckcq723h4007vkxs18dxa97ae) in the previous articles of the series, it is going to be much simpler for you.

Let us start with a simple code example,

```js
function sayHello(msg) {
  return function(name) {
    console.log(`${name}! ${msg}`);
  }
}
```
Here we have a function `sayHello()` that takes a message as an argument. In JavaScript, functions can return another function. `sayHello()` returns a function that takes `name` as an argument and logs the name and message in the console. The function inside `sayHello()` is called inner function and `sayHello()` can be referred as an outer function.

Fair enough. How do we invoke them? Here it is,

```js
var messageFor = sayHello('Hello, there!');
console.log(messageFor('Jack'));
```
As sayHello() returns a function, the variable `messageFor` points to a function. In the next line, we invoke `messageFor()` passing the value 'Jack'. It logs the following output,

```shell
Jack! Hello, there!
```
But, we have a few questions to ask and get clarifications about,
- How does the inner function of `sayHello()` gained access to the `msg` variable? How is that possible?
- What about the `scope` here? The `msg` variable is in no way in the scope of the inner function. Then how is it working?

The answer is, it is working with the help of a JavaScript feature called `Closure`.

## A bit of recap
By now, we are aware, 
- There is something called `global execution context` and `function execution context`. 
- When a JavaScript program runs, a global execution context gets created.
- When a function is invoked, a function execution context gets created.
- All the function execution contexts refer to its outer environment, i.e., the execution context of the function that has created the currently running function.
- Using the outer reference, the JavaScript engine determines the accessibility of a variable. This is called, Scoping.
- The variable's scope can be found by traversing through the scope chain leading up to the global execution context.

We have seen this picture [before](https://blog.greenroots.info/javascript-scope-fundamentals-with-tom-and-jerry-ckcq723h4007vkxs18dxa97ae),
![scope_chain.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1594983372127/nSxdUOgCv.png)

## Closure anatomy

In JavaScript, a function can be nested inside another function. The nested function is called the `inner function`. This inner function can access the variables defined in the outer function's context. It is done by `closure`. So, it is the inner function that creates a closure to the outer function.

Let us understand the execution steps of the example above in more details. Here is the code again,

```js
// declare the function
function sayHello(msg) {
  // it returns another function
  return function(name) {
    console.log(`${name}! ${msg}`);
  }
}

// invoke the function that returns a function
var messageFor = sayHello('Hello, there!');
// invoke the returned function
console.log(messageFor('Jack'));
```
- A global execution context gets created. In its `execution phase`, the function `sayHello()` gets invoked.
  ```js
  var messageFor = sayHello('Hello, there!');
  ```
- A function execution context gets created for `sayHello()` and it gets added to the execution stack. Note, it has an argument called, `msg` and it will be available in its execution context.
  ```js
   function sayHello(msg) {
     // code
   }
  ```
- `sayHello()` returns another function and pop out the execution stack.
  ```js
   function sayHello(msg) {
     // it returns another function
     return function(name) {
       console.log(`${name}! ${msg}`);
     }
  }
  ```
 But, hold on. `sayHello()` returns an inner function. It means, the inner function will create a `closure` to the outer function's(sayHello()) execution context. With that, it will also have all the access to the outer function's variables. In this case, it is `msg`.
- Next, the global execution context invokes `messageFor('Jack')`. This is nothing but that inner function returned in the last step. 
  ```js
   console.log(messageFor('Jack'));
  ```
 This invocation will create a new function execution context. As we pass `Jack` as an argument, it will be available in its execution context. But remember, it also has access to the `msg` as explained in the step above.

This is how `Closure` helps retain access to the parent's execution context even when it has already been executed and removed from the execution stack. 

This is a compelling concept. I hope it was simpler to understand. Not yet? Alright, let us see all these happening visually,

![flow.gif](https://cdn.hashnode.com/res/hashnode/image/upload/v1595645618191/EePjxViBh.gif)

The inner function creates a special scope called `Closure Scope` on the outer function's execution context. This is how the closure scope will be(in red border),

![closure.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1595645707578/u9DtfkfO0.png)

## Try this example
With the explanation we have gotten so far, what do you think will be the following?

```js
function myMultiplier(x) {
   return function inner(y) {
     return x * y;
   }
}
```
and then invoke the functions like,

```js
var multiplyOf5 = myMultiplier(5);
var multiply5x4 = multiplyOf5(4);
console.log(multiply5x4);
```

I'm sure you got this! Yeah, the inner function will have access to the variable of parent function's(myMultiplier()) execution context. The inner function now has two variables, i,e, x, and y, in scope.

In the execution phase, x and y have values as 5 and 4, respectively. The multiplication of these results in the value, 20. Isn't that simple now?  

# Conclusion
`Closure` is much easy to understand when you get to it conceptually with `execution context` and `scope`. I hope you will try out many more examples with the understanding we got here.

%[<hr />]
I hope you find the article useful. Please Like/Share so that it reaches others as well. If you enjoyed this article or found it helpful, let's connect. You can find me on [Twitter(@tapasadhikary)](https://twitter.com/tapasadhikary) sharing thoughts, tips, and code practices.

To get e-mail notifications on my latest posts, please ***subscribe*** to my blog by hitting the Subscribe button at the top of the page.

I hope the [entire series](https://hashnode.com/series/javascript-cracking-the-nuts-ckawn7vc5007dl6s164ogqplz) was useful to you so far and helped in learning some JavaScript concepts under the hood. 

See you sooner with another series in the making. Please stay tuned!

