Skip to content

Instantly share code, notes, and snippets.

@archangel-irk
Last active August 29, 2015 14:15
Show Gist options
  • Save archangel-irk/535e790212ab75d9e614 to your computer and use it in GitHub Desktop.
Save archangel-irk/535e790212ab75d9e614 to your computer and use it in GitHub Desktop.
var a = 10;
function testFn() {
alert( a );
alert( b );
}
(function (funArg) {
var a = 20;
var b = 30;
funArg(); // что тут будет и почему?
})(testFn);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment