Skip to content

Instantly share code, notes, and snippets.

@zry656565
Created March 4, 2015 08:40
Show Gist options
  • Save zry656565/a420989bfa8cb832addd to your computer and use it in GitHub Desktop.
Save zry656565/a420989bfa8cb832addd to your computer and use it in GitHub Desktop.
function a(x, y){
var x = x; //这句加了和没加效果一样,但也许能帮助你理解
y = function() { x = 2; };
return function(){
var x = 3;
y();
console.log(x);
}.apply(this, arguments);
}
a();
@Janking
Copy link

Janking commented Mar 27, 2015

mark!神来之笔。谢谢楼主

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