Skip to content

Instantly share code, notes, and snippets.

@need4spd
Last active August 29, 2015 13:57
Show Gist options
  • Save need4spd/9925792 to your computer and use it in GitHub Desktop.
Save need4spd/9925792 to your computer and use it in GitHub Desktop.
closure.js
var getResult = (function() {
var res = 2 + 2;
return function() {
return res;
};
}());
gerResult; //function () { return res; }
getResult(); //4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment