Skip to content

Instantly share code, notes, and snippets.

@eklitzke
Created July 19, 2012 00:57
Show Gist options
  • Select an option

  • Save eklitzke/3140059 to your computer and use it in GitHub Desktop.

Select an option

Save eklitzke/3140059 to your computer and use it in GitHub Desktop.
(function () {
var x = 1;
(function (x) {
function () {
// x is always 1 here, no matter what
}
})(x);
x = 2;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment