I am interested in knowing if its even possible.
One example is the variable already exists.
foo = 1; var bar = 'foo';
if('foo' == 1)? Is there a way to do that.
Is there a way to say something like bar == foo.variablename
|
I am interested in knowing if its even possible. One example is the variable already exists. foo = 1; var bar = 'foo'; if('foo' == 1)? Is there a way to do that. Is there a way to say something like bar == foo.variablename |
|||
|
|
Yes you can but I wouldn't recommend it.
but from the text in your question it kind of sounds like you want to check if a variable exists and that is also possible
|
||||
|
|
|
No to variables, Yes to properties. Since variables are properties:
|
|||
|
|
|
I think, I didn't get what's your concrete purpose, but with function |
|||
|
|