You can't dynamically access scope objects in standard javascript[0] except by using `eval`, and `eval` already triggers special handling and deoptimizations in pretty much all browsers.
[0] outside of the global scope through `window` but all variables are clearly local here so that doesn't apply.
Comments
You can't dynamically access scope objects in standard javascript[0] except by using `eval`, and `eval` already triggers special handling and deoptimizations in pretty much all browsers.
[0] outside of the global scope through `window` but all variables are clearly local here so that doesn't apply.
Doh! Good point.