How JavaScript closure works in this sample cases?

66 Views Asked by At

I am relatively new with the Javascript closure concept. I know how to get the work done, but I want to understand the concept through and through.

Can somebody explain in short, why example 1,2 works,and 3,4 doesn't? Any good links regarding js closures will be appreciated as well.

Example 1

    var add = (function() {
    var counter = 0;
    var plus = function() {
             return ++counter;
         };

         return plus;

     })();

    console.log(add()); //1
    console.log(add()); //2
    console.log(add()); //3

Example 2

var add = (function () {
    var counter = 0;
    return function () {return counter += 1;}
})();

add();//1
add();//2
add();//3

Example 3

var add=function(){
var counter=0;
var plus=(function(){
  return ++counter;
})();
return plus;

} 
 console.log(add());//1
 console.log(add());//1
 console.log(add());//1

Example 4

var add=function(){
var counter=0;
var plus=(function(){
  return ++counter;
});

return plus;
}


console.log(add()());//1
console.log(add()());//1
console.log(add()());//1
0

There are 0 best solutions below