Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created April 18, 2013 15:44
Show Gist options
  • Save tmcw/5413779 to your computer and use it in GitHub Desktop.
Save tmcw/5413779 to your computer and use it in GitHub Desktop.
Demonstrating latebinding
var x;
function latebinder() {
x = 2;
try { return x; }
finally { x = 4; }
}
latebinder();
x;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment