var foo = "bar"
var bar = "realvalue";
Is it possible to print the value of bar using foo ?
Is it possible to print the value of |
|||||
|
|
Approach 1: global variable
OR Approach 2: namespace
|
|||||||||||||
|
|
Yeah you can do something like this with
EDIT: Seems a lot of people are against using the eval() function. My advice before using it is read this question: Why is using the JavaScript eval function a bad idea? Then once you understand the risks you can decide for yourself if you wish to use it. |
|||||||||||||||||||||
|
|
If it's a global variable you can use |
||||
|
|
Don't do this kind of constructs with non-global variables, just scope whatever variables you would otherwise have floating around.
Btw, the above doesn't rely on the default behaviour of browsers to also register global variables in the |
||||
|
|
|
Global variables are defined on the
|
|||
|
|
|
Yes, via |
|||||||||||||||
|