Skip to content

Instantly share code, notes, and snippets.

@AhnMo
Created December 19, 2017 18:02
Show Gist options
  • Select an option

  • Save AhnMo/86d031e04772c9691b0daee73c4ff3a2 to your computer and use it in GitHub Desktop.

Select an option

Save AhnMo/86d031e04772c9691b0daee73c4ff3a2 to your computer and use it in GitHub Desktop.
Fucking Javascript Closure - eval
var x = 'outter';
(function () {
var x = 'inner';
alert(eval('x'));
})();
// inner
var x = 'outter';
(function () {
var x = 'inner';
var func = eval;
alert(func('x'));
})();
// outter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment