Skip to content

Instantly share code, notes, and snippets.

@koistya
Created February 12, 2014 11:49
Show Gist options
  • Select an option

  • Save koistya/8954100 to your computer and use it in GitHub Desktop.

Select an option

Save koistya/8954100 to your computer and use it in GitHub Desktop.
JavaScript Closure Example
var bind = function(x) {
return function(y) { return x + y; };
}
var plus5 = bind(5);
alert(plus5(3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment