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.