vote up 0 vote down star

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?
flag

73% accept rate
See: stackoverflow.com/questions/724857/… – Crescent Fresh Nov 3 at 0:53
You should accept more answers to your questions. – Justin Johnson Nov 3 at 5:40

6 Answers

vote up 8 vote down check

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|flag
vote up 1 vote down

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

link|flag
vote up 6 vote down

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|flag
vote up 1 vote down

eval will do that:

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

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

As demonstrated here.

link|flag
vote up 1 vote down
eval("alert(" + someString + ");");

would work.

link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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