Skip to content

Instantly share code, notes, and snippets.

@ruanyf
Created March 4, 2015 03:18
Show Gist options
  • Save ruanyf/cae49b92b0bd43c4d57d to your computer and use it in GitHub Desktop.
Save ruanyf/cae49b92b0bd43c4d57d to your computer and use it in GitHub Desktop.
JavaScript作用域
function a(x,y){
y = function() { x = 2; };
return function(){
var x = 3;
y();
console.log(x);
}.apply(this, arguments);
}
a();
@zry656565
Copy link

https://gist.github.com/zry656565/a420989bfa8cb832addd 加了句代码,也许能帮助你理解。

@RCmerci
Copy link

RCmerci commented Mar 4, 2015

是3啊。不是很符合直觉吗?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment