Javascript Closure and Data Visibility - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:45:22Z http://stackoverflow.com/feeds/question/947352 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility 5 Javascript Closure and Data Visibility Goyuix 2009-06-03T21:25:23Z 2009-07-31T08:09:10Z <p>I am trying to wrap my head around the idea of classes, data visibility and closures (specifically in Javascript) and I am On the jQuery docs page for types, it mentions that closures are used to hide data:</p> <blockquote> <p>The pattern allows you to create objects with methods that operate on data that isn't visible to the outside—the very basis of object-oriented programming.</p> </blockquote> <p>The example:</p> <pre><code>function create() { var counter = 0; return { increment: function() { counter++; }, print: function() { console.log(counter); } } } var c = create(); c.increment(); c.print(); // 1 </code></pre> <p>By declaring the variable counter with the keyword var, it is already locally scoped inside the function/class definition. As far as I know and can tell, it isn't accessible from the outside to begin with. Am I missing something from a data visibility perspective.</p> <p>Second, is there an advantage to writing the class like above versus like below:</p> <pre><code>function create() { var counter = 0; this.increment = function() { counter++; } this.print = function() { console.log(counter); } return this; } var c = create(); c.increment(); c.print(); // 1 </code></pre> <p>As I understand it, these are more or less semantically the same thing - the first is just more "jQuery style". I am just wondering if there is an advantage or other nuance I don't fully appreciate from the first example. If I am correct, both examples create closures in that they are accessing data declared outside their own scope.</p> <p><a href="http://docs.jquery.com/Types#Closures" rel="nofollow">http://docs.jquery.com/Types#Closures</a></p> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947382#947382 1 Answer by Joel Coehoorn for Javascript Closure and Data Visibility Joel Coehoorn 2009-06-03T21:33:32Z 2009-06-03T21:33:32Z <p>Your 2nd example does still use closures, because the increment and print functions still act on a variable otherwise is out of scope &mdash; by the time you call <code>c.increment()</code> the create function has already exited.</p> <p>I like the first example because it avoids the "<code>this</code>" keyword, and in javascript "<code>this</code>" can be tricky &mdash; it doesn't always refer to what it seems like it should.</p> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947386#947386 5 Answer by Triptych for Javascript Closure and Data Visibility Triptych 2009-06-03T21:35:05Z 2009-06-03T21:35:05Z <p>First of all, you are correct that both versions use closures.</p> <p>The first version is cleaner (in my opinion) and more popular in modern javascript. The major potential drawback of the first style is that you cannot effectively assign objects to the constructor's prototype, which is useful (and more efficient) if you are creating a lot of the same objects.</p> <p>The second style, I've actually never seen in production Javascript. Normally, you would instantiate <code>create</code> with <code>new</code>, instead of returning <code>this</code> in the <code>create()</code> function, like so:</p> <pre><code>function create() { var counter = 0; this.increment = function() { counter++; } this.print = function() { console.log(counter); } } var c = new create(); c.increment(); c.print(); // 1 </code></pre> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947410#947410 2 Answer by Jason Bunting for Javascript Closure and Data Visibility Jason Bunting 2009-06-03T21:39:03Z 2009-06-03T22:27:36Z <p>Well, I don't care to get into a religious war over how to create objects in JavaScript, since some people feel strongly that there is a right and wrong way to do it.</p> <p>However, I want to point out something in your second set of code that isn't too savory - namely, the fact that you are assigning things new properties on the object contained in the <code>this</code> keyword - do you realize what that object is? It isn't an empty object unless you use instantiation syntax like this:</p> <pre><code>var c = new create(); </code></pre> <p>When you do that, the <code>this</code> keyword inside the body of the constructor function is assigned a brand new object, as though the first line in the body were something like:</p> <pre><code>this = {}; </code></pre> <p>But when you call <code>create()</code> as a function, as you do in that example, you are altering the scope outside of the function's definition (as alluded-to by @seanmonster in the comments).</p> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947420#947420 1 Answer by Steerpike for Javascript Closure and Data Visibility Steerpike 2009-06-03T21:40:47Z 2009-06-03T21:40:47Z <p>Christian Heilmann has a fairly decent article on <a href="http://www.wait-till-i.com/2007/07/24/show-love-to-the-module-pattern/" rel="nofollow">the module pattern</a> that you describe that might help you wrap your head around it and why it's useful.</p> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947426#947426 2 Answer by Itay for Javascript Closure and Data Visibility Itay 2009-06-03T21:41:52Z 2009-06-03T22:12:17Z <p>You should compare the example against this snippet</p> <pre><code>function create() { this.counter = 0; this.increment = function() { this.counter++; }; this.print = function() { console.log(counter); } } var c = new create(); c.increment(); c.print(); // 1 </code></pre> <p>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:</p> <pre><code>var c = new create(); c.increment(); c.counter = 0; c.print(); // 0 </code></pre> <p>By using closures (as shown in 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.</p> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947429#947429 1 Answer by Russ Cam for Javascript Closure and Data Visibility Russ Cam 2009-06-03T21:42:06Z 2009-06-03T21:49:23Z <blockquote> <p>By declaring the variable counter with the keyword var, it is already locally scoped inside the function/class definition. As far as I know and can tell, it isn't accessible from the outside to begin with. Am I missing something from a data visibility perspective.</p> </blockquote> <p>It's not that the <code>counter</code> variable isn't accessible from outside the function to begin with, it's that it is accessible to the <code>increment</code> and <code>print</code> functions after <code>create</code> function has exited that makes <a href="http://www.jibbering.com/faq/faq%5Fnotes/closures.html" rel="nofollow">closures</a> so useful.</p> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947475#947475 0 Answer by Miles for Javascript Closure and Data Visibility Miles 2009-06-03T21:54:33Z 2009-06-03T21:54:33Z <p>In your second example, when you call <code>create()</code>, within the scope of the function, <code>this</code> is the global object (which is always the case when you call a "bare" function, without using it as a constructor or accessing it as a property (e.g. a "method" call)). In browsers, the global object is <code>window</code>. So when you call create subsequent times, it creates new closures, but you then assign them to the same global object as before, overwriting the old functions, which is not what you want:</p> <pre><code>var c = create(); // c === window c.increment(); c.print(); // 1 var c2 = create(); // c2 === c === window c.print(); // 0 c2.print(); // 0 increment(); // called on the global object c.print(); // 1 c2.print(); // 1 </code></pre> <p>The solutions, as others have pointed out, is to use <code>new create()</code>.</p> http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/1211258#1211258 1 Answer by Matt for Javascript Closure and Data Visibility Matt 2009-07-31T08:09:10Z 2009-07-31T08:09:10Z <p>This syntax makes more sense to me coming from an OOP background:</p> <pre><code>Create = function { // Constructor info. // Instance variables this.count = 10; } Create.prototype = { // Class Methods sayHello : function() { return "Hello!"; }, incrementAndPrint : function() { this.count++; // Inner method call. this.print(); }, print : function() { return this.count; } } var c = new Create(); alert(c.incrementAndPrint()); </code></pre>