Skip to content

Instantly share code, notes, and snippets.

@lyuehh
Created December 28, 2013 10:30
Show Gist options
  • Save lyuehh/8158106 to your computer and use it in GitHub Desktop.
Save lyuehh/8158106 to your computer and use it in GitHub Desktop.
function fun1() {
var a = 1;
return function() {
return a++;
};
}
var add1 = fun1();
console.log(add1());
console.log(add1());
console.log(add1());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment