Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello it is possible to access the value of a JavaScript variable by name? Example:

var MyVariable = "Value of variable";

alert(readValue("MyVariable"));

function readeValue(name) {
     ....
}

Is this possible, so that the output is "Value of variable"? If yes, how do I write this function?

Thanks

share|improve this question

4 Answers

up vote 6 down vote accepted

Global variables are defined on the window object, so you can use:

var MyVariable = "Value of variable";
alert(window["MyVariable"]);
share|improve this answer
-1 You need to remove 'var' before MyVariable to make it a part of window object. – craftsman Jul 19 '12 at 11:04

Yes, you can do it like this:

var MyVariable = "Value of variable";
alert(window["MyVariable"]);
share|improve this answer
1  
This is correct, for those interested in learning more, it's called bracket notation. – Nick Craver Dec 9 '10 at 15:25
That is a great link, Nick. Thanks for sharing! – wsanville Dec 9 '10 at 15:27
..and the reason why you're using window[] is because MyVariable is in global scope which makes it a property of the window object. (window object is the global object in client side JS) – instantsetsuna Dec 9 '10 at 15:39
var MyVariable = "Value of variable";    
alert(readValue("MyVariable"));    

// function readEValue(name) { readevalue -> readvalue // always do copy-paste to avoid errors  
function readValue(name) {   
 return window[name]   
}   

That's all about ;o)

share|improve this answer
End-of-lines (Carriage-Return) did not work in my answer. Sorry. Take care to reconstitute them. – Dr DIASOLUKA Nov 18 '12 at 7:46
var sen0=1;
if(window["sen"+n] > 0){
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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