You should compare the example against this snippet
function create() {
this.counter = 0;
this.increment = function() {
counter++this.counter++;
};
this.print = function() {
console.log(counter);
}
}
var c = new create();
c.increment();
c.print(); // 1
So when new create() is called it initializes the new object with two methods and one instance variable (namely: counter). Javascript does not have encapsulation per-se so you could access c.counter, as follows:
var c = new create();
c.increment();
c.counter = 0;
c.print(); // 0
By using closures (as shown on the examplein your examples) counter is now longer an instance field but rather a local variable. On the one hand, you cannot access from outside the create() function. On the other hand, increment() and print() can access because they close over the enclosing scope. So we end up with a pretty good emulation of object-wise encapsulation.
