function Foo() {
    var myPrivateBool = false,
        myOtherVar;
    this.bar = function(myOtherVar) {
        myPrivateBool = true;
        myOtherVar = myOtherVar; // ?????????????????
    };
}

How can I set the private variable myOtherVar?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Give the parameter a different name:

    function Foo() {
        var myPrivateBool = false,
            myOtherVar;
        this.bar = function( param ) {
            myPrivateBool = true;
            myOtherVar = param;
        };
        this.baz = function() {
            alert( myOtherVar );
        };
    }


var inst = new Foo;

inst.bar( "new value" );

inst.baz();  // alerts the value of the variable "myOtherVar"

http://jsfiddle.net/efqVW/


Or create a private function to set the value if you prefer.

function Foo() {
    var myPrivateBool = false,
        myOtherVar;
    function setMyOtherVar( v ) {
        myOtherVar = v;
    }
    this.bar = function(myOtherVar) {
        myPrivateBool = true;
        setMyOtherVar( myOtherVar );
    };
    this.baz = function() {
        alert(myOtherVar);
    };
}


var inst = new Foo;

inst.bar("new value");

inst.baz();

http://jsfiddle.net/efqVW/1/

link|improve this answer
i was afraid that would have to be it =( i guess this is a flaw of js – Garrett Feb 14 '11 at 20:08
@Garrett: Yeah, the formal parameters in the bar function will be closer in the scope chain than the constructor's variables. – user113716 Feb 14 '11 at 20:12
@Garrett: I suppose you could create a private function to set the value, but I'm not sure that's what you'd want. – user113716 Feb 14 '11 at 20:16
nah, just looking for the cleanest code possible. making another function just to set the private member would let me keep the param name, but that's too much of a hassle. thanks! – Garrett Feb 14 '11 at 20:38
feedback

Try this.myOtherVar = myOtherVar;

link|improve this answer
That sets a property, not a variable. – user113716 Feb 14 '11 at 20:07
doesn't that make it a public member? – Garrett Feb 14 '11 at 20:09
feedback

I think this.myOthervar = myOtherVar; will corrupt the global namespace and created a variable window.myOtherVar in window object

link|improve this answer
OP is using the Foo as a constructor, so when the constructor is called (as a constructor), this will reference the new object being created. – user113716 Feb 14 '11 at 20:27
feedback

Your Answer

 
or
required, but never shown

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