Skip to content

Instantly share code, notes, and snippets.

@binnng
Created June 8, 2013 02:41
Show Gist options
  • Select an option

  • Save binnng/5733761 to your computer and use it in GitHub Desktop.

Select an option

Save binnng/5733761 to your computer and use it in GitHub Desktop.
new Function的问题,函数体内的变量从全局环境找,new Function声明的函数所处作用域为全局。这点和eval不同。
var a = 1;
(function () {
var a = 3;
(new Function('console.log(a)'))(); // 1
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment