Hacker News new | ask | show | jobs
by masklinn 4733 days ago
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.

1 comments

Doh! Good point.