Skip to content

Instantly share code, notes, and snippets.

@metasansana
Created September 1, 2013 14:54
Show Gist options
  • Save metasansana/6404937 to your computer and use it in GitHub Desktop.
Save metasansana/6404937 to your computer and use it in GitHub Desktop.
Javascript closure
function outer (outerArg) {
return function (innerArg) { // closure function
return outerArg+innerArg;
};
}
//Usage
var result = outer(1)(2); // result will be equal to 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment