Skip to content

Instantly share code, notes, and snippets.

@kwbock
Created August 12, 2013 20:15
Show Gist options
  • Save kwbock/6214707 to your computer and use it in GitHub Desktop.
Save kwbock/6214707 to your computer and use it in GitHub Desktop.
var test = function() {
var a = 7;
var b = 8;
return function() {
return a+=1
}
};
test() // returns 8
a = 4;
test() // returns 9
test() // returns 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment