I know it's possible in PHP to have "Variable" variables. For example
$x = "variable";
$$x = "hello, world!";
echo $variable;"
Is this possible in javascript? How would it be done?
|
I know it's possible in PHP to have "Variable" variables. For example
Is this possible in javascript? How would it be done? |
|||||
|
|
Well, sort of. If you set the variable as a property of an object:
Works easily for global variables as they are set as properties of the |
|||
|
|
|
If you are desperate to do this you can either try using eval():
Or using the window object:
http://www.hiteshagrawal.com/javascript/dynamic-variables-in-javascript |
|||
|
|
|
Of course you can, but don't. The variables have to be global.
|
|||
|
|
|
It's not possible in (ECMA|Java)Script to my knowledge. I'm not sure why one would want to rely on this PHP-esque behaviour, it just introduces confusion. |
|||
|
|
|
You might be able to put something together using |
|||
|
|
|
You could do something with objects. For example, you could do:
It even works with functions:
You can do the same with arrays. So:
|
|||||
|