Skip to content

Instantly share code, notes, and snippets.

@kru
Last active February 26, 2018 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kru/f93faf898f2406ca1f3b53b2ca2ab71a to your computer and use it in GitHub Desktop.
Save kru/f93faf898f2406ca1f3b53b2ca2ab71a to your computer and use it in GitHub Desktop.
closure
var myAwesomeModule = function(x) {
return function() {
var y = x * 10;
console.log(y);
};
};
var multiplyBy100 = myAwesomeModule(10);
var multiplyBy25 = myAwesomeModule(2.5);
multiplyBy100(); // 100
multiplyBy25(); // 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment