How would I reference a dynamic local variable? I know how to accomplish this with a global variable scope; for example.

myPet = "dog";  
alert(window["myPet"]); // Alerts "dog"

How would I accomplish the same with var myPet = "dog"?
Note: This is merely the simplest form I can think of for what I'm trying to accomplish.
I just want to know how to reference a variable, not obtain its value. In the above, I specifically want to reference myPet, not its value of dog.


Here is more specifically what I'm trying to do.

myArray = [100,500,200,800];  
a = 1; // Some array index  
b = 2; // A different array index  

Depending on the situation, I want to evaluate a<b or b<a

  • To accomplish this, I set two variables: compare1 and compare2
  • compare1 will reference either a or b and compare2 will reference the other
  • I will then evaluate compare1 < compare2 or vice-versa

The following works perfectly with global variables. However, I want a and b to be local.

compare1 = "b"; compare2 = "a";  
for(a=0; a<myArray.length; a++){  
  b = a+1;  
  while(b>=0 && myArray[window[compare1]] < myArray[[compare2]]){    
    /* Do something; */
    b--;  
  }
}  

If in the above I set compare1=a then I would have to reset compare1 every time a changed. Instead, I want to actually [look at/point to] the value of a.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Use an object instead of a set of separate variables instead. (I can't think of a real world situation where you would want to use a dynamically named variable where it isn't part of a group of logically related ones).

var animals = { dog: "Rover", cat: "Flopsy", goldfish: "Killer" };
var which = 'dog';
alert(animals[which]);
link|improve this answer
This answer accomplishes exactly what I'm trying to do, thank you. For argument's sake though, is it possible to dynamically reference local variables? What would they be attached to (as in global are attached to 'window')? – Gary Oct 2 '11 at 1:33
1  
Local variables are added to the "activation object" that is created for each function that you enter. As far as I am aware, there is no way to access the activation object to dynamically access its members. --- Dmitry Soshnikov has done a lot of exploration and good writing on the internals of ECMAScript. Here's an article he wrote that discusses how the AO works. Reading this should put you on the path to determining whether there is a way or not: dmitrysoshnikov.com/ecmascript/chapter-2-variable-object/… – Jason LeBrun Oct 2 '11 at 1:46
feedback

you can reference a local variable globally if it is returned by a function.

funtion dog(name) {

  var local = name;

  return local;

}

myPet = dog('spike');

alert(myPet);
link|improve this answer
feedback

You can accomplish this with eval, however use of eval is highly discouraged. If you can wrangle your needs into David Dorward's recommendation, I'd do that:

var myPet = 'dog';
var dog = 'fido';

eval("alert(" + myPet + ")");  // alerts "fido"
link|improve this answer
Thanks Matt, eval is the only way I could figure to do this but I was trying to avoid it. – Gary Apr 29 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

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