Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created September 3, 2014 15:36
Show Gist options
  • Save cowboy/7d20e19b207b8802ad8e to your computer and use it in GitHub Desktop.
Save cowboy/7d20e19b207b8802ad8e to your computer and use it in GitHub Desktop.
JavaScript: don't forget about indirect eval, kiddos
(function(){ console.log( eval('this') ); }.call({a:1}))
// Object {a: 1}
(function(){ console.log( (0,eval)('this') ); }.call({a:1}))
// Window {top: Window, window: Window, location: Location, external: Object, chrome: Object…}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment