up vote 0 down vote favorite
share [g+] share [fb]

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?
link|improve this question

73% accept rate
You should accept more answers to your questions. – Justin Johnson Nov 3 '09 at 5:40
feedback

6 Answers

up vote 8 down vote accepted

You can use an eval to do it, though I try to avoid that sort of thing at all costs.

alert(eval(someString));

A better way, if you find yourself needing to do this, is to use a hash table.

var stuff = { myText: 'hello world!' };
var someString = 'myText';
alert( stuff[someString] );
link|improve this answer
feedback

If that variable is on the global scope, you can use the bracket notation on the global object:

var myText = 'hello world!';
var someString = 'myText';

alert(window[someString]);
link|improve this answer
feedback

You can do this with eval:

var myText = 'hello world!';
var someString = 'myText';

eval('var theTextInMyText = ' + someString + ';');

alert(theTextInMyText);

The desire to do this at all usually is a "code smell". Perhaps there is a more elegant way...

link|improve this answer
feedback
eval("alert(" + someString + ");");

would work.

link|improve this answer
feedback

eval will do that:

var myText = 'hello world!!';
var someString = eval('myText');

document.getElementById('hello').innerHTML = someString;

As demonstrated here.

link|improve this answer
feedback

Assuming this is at the top level, window[someString] === "hello world!".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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