Skip to content

Instantly share code, notes, and snippets.

@SiZapPaaiGwat
Forked from ruanyf/gist:cae49b92b0bd43c4d57d
Last active August 29, 2015 14:16
Show Gist options
  • Save SiZapPaaiGwat/4bcf9cb49e048469fb22 to your computer and use it in GitHub Desktop.
Save SiZapPaaiGwat/4bcf9cb49e048469fb22 to your computer and use it in GitHub Desktop.
function a(x,y){
y = function() { x = 2; };
return function(){
var x = 3;
y();
console.log(x);
}.apply(this, arguments);
}
a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment