Skip to content

Instantly share code, notes, and snippets.

@arv
Created November 16, 2011 21:29
Show Gist options
  • Save arv/1371474 to your computer and use it in GitHub Desktop.
Save arv/1371474 to your computer and use it in GitHub Desktop.
var C = 1;
function f(x = C) {
var C = 2;
return x;
}
var result = f(); // ???
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment