Possible Duplicate:
How to access javascript variable value by creating another variable via concatenation?
In PHP I can have:
$theVariable = "bigToe";
$bigToe = "is broken";
such that:
echo "my ".$theVariable." ".$$theVariable;
would display
my bigToe is broken
How would I go about doing something similar to that in JavaScript?