Is there a way to refer to a Javascript variable with a string that contains its name?
example:
var myText = 'hello world!';
var someString = 'myText';
//how to output myText value using someString?
|
Is there a way to refer to a Javascript variable with a string that contains its name? example:
| |||||
feedback
|
|
You can use an
A better way, if you find yourself needing to do this, is to use a hash table.
| |||
|
feedback
|
|
If that variable is on the global scope, you can use the bracket notation on the global object:
| |||
|
feedback
|
|
You can do this with
The desire to do this at all usually is a "code smell". Perhaps there is a more elegant way... | |||
|
feedback
|
|
| |||
|
feedback
|
|
Assuming this is at the top level, | |||
|
feedback
|