Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I have a javascript function/class called Foo and it has a property called bar. I want the value of bar to be supplied when the class is instantiated, e.g:

var myFoo = new Foo(5);

would set myFoo.bar to 5.

If I make bar a public variable, then this works, e.g:

function Foo(bar)
{
    this.bar = bar;
}

But if I want to make it private, e.g:

function Foo(bar)
{
   var bar;
}

Then how would I set the value of the private variable bar such that its available to all internal functions of foo?

share|improve this question
FWIW, you cannot have truly private variables and make use of prototypes. I personally would provide proper documentation instead of making the code more complex... – Felix Kling Jul 23 '11 at 8:38

4 Answers

up vote 2 down vote accepted

You have to put all functions that need to access the private variable inside the constructor:

function Foo(bar)
{
  //bar is inside a closure now, only these functions can access it
  this.setBar = function() {bar = 5;}
  this.getBar = function() {return bar;}
  //Other functions
}

var myFoo = new Foo(5);
myFoo.bar;      //Undefined, cannot access variable closure
myFoo.getBar(); //Works, returns 5
share|improve this answer

One of the best tutorials on private and protected access in javascript is here: http://javascript.crockford.com/private.html.

function Foo(a) {
    var bar = a;                              // private instance data

    this.getBar = function() {return(bar);}   // methods with access to private variable
    this.setBar = function(a) {bar = a;}
}

var x = new Foo(3);
var y = x.getBar();   // 3
x.setBar(12);
var z = x.bar;        // not allowed (x has no public property named "bar")
share|improve this answer
3  
Whoever downvoted this, can you explain why? This looks correct to me. +1 – Paulpro Jul 23 '11 at 8:08
why downvote? This seems to be correct answer – Molecular Man Jul 23 '11 at 8:09
I didn't, but in many languages it's nice to be able to use the same parameter name instead of something like 'a'. That is, having a parameter named 'bar' and assigning it to a variable named 'bar' – mr axilus Mar 2 '12 at 12:25
@MrAxilus - In javascript, you can't have a local variable with the same name as a function argument and have access to both by that name. – jfriend00 Mar 2 '12 at 14:27
1  
@GabrielLlamas - there's no bad practice with this approach. It is simply a tradeoff. In order to achieve privacy, you accept a tiny performance hit when the object is created. Once created the object performs perfectly fine. The prototype is there as a convenience. There's no reason you have to use it to achieve your goal. If you were creating lots of Foo() objects and performance was paramount, this would be a bad tradeoff. But, if you're only creating a couple or the performance of this method was perfectly fine AND you wanted variable privacy, this method is a good practice. – jfriend00 Mar 30 '12 at 11:48
show 4 more comments
function Foo(b)
{
   var bar = b;

   this.setBar = function(x){
        bar = x;
   }

   this.alertBar = function(){
        alert(bar);
   }
}

var test = new Foo(10);
alert(test.bar); // Alerts undefined
test.alertBar(); // Alerts 10
share|improve this answer
jsfiddle.net/Paulpro/fzXZ6 – Paulpro Jul 23 '11 at 8:08

I recently had a similar issue but wanted to use accessor properties also. Below is a Foo(Bar) example based on what I came up with for a solution. This example is trivial but can easily be expanded upon using more complex get/set functions.

function Foo(Bar){
    Object.defineProperty(this,"bar",{get:function(){return Bar},set:function(val){Bar=val}});

}
x=new Foo(3);
y=x.bar; //3
x.bar++; //x.bar==4
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.