Skip to content

Instantly share code, notes, and snippets.

@edmore
Created September 28, 2011 19:55
Show Gist options
  • Save edmore/1249084 to your computer and use it in GitHub Desktop.
Save edmore/1249084 to your computer and use it in GitHub Desktop.
JavaScript closure
// usage : mult2 = multiplier(2) ; mult2(3) gives you 6
// usage : mult3 = multiplier(3)
var multiplier = function(x){
return function(y){
return x * y;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment