function Foo() {
var myPrivateBool = false,
myOtherVar;
this.bar = function(myOtherVar) {
myPrivateBool = true;
myOtherVar = myOtherVar; // ?????????????????
};
}
How can I set the private variable myOtherVar?
How can I set the private variable myOtherVar?
| |||
|
feedback
|
|
Give the parameter a different name:
Or create a private function to set the value if you prefer.
| |||||||||
feedback
|
|
Try | |||||
|
feedback
|
|
I think this.myOthervar = myOtherVar; will corrupt the global namespace and created a variable window.myOtherVar in window object | |||
feedback
|