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

I'm trying to access a property of an object using a dynamic name.. is this possible?

foo = 'bar';
alert(appr.templates.{foo}); //the idea is to access appr.templates.bar
share|improve this question

2 Answers

up vote 48 down vote accepted

this should do the trick:

var foo = 'bar';
alert ( appr.templates[foo] );
share|improve this answer
2  
Can't believe how easy that was, didn't realise you could access object properties like you would with an array. Thanks! – RichW Nov 22 '10 at 11:34
Goodness. That took me forever to figure out. It didn't make sense that appr.templates.bar === appr.templates[foo] – zmonteca Sep 22 '11 at 21:20
wtf! awesome.. thank you guys.. i was going mad. – Federico Quagliotto Dec 6 '11 at 8:11
2  
careful with this: javascript compilers will error here since they dont rename strings but they do rename object properties – chacham15 Dec 6 '11 at 8:40
appr.templates[foo]
share|improve this answer
Thanks for that! – RichW Nov 22 '10 at 11:33

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.