Last active
February 26, 2018 09:54
-
-
Save kru/f93faf898f2406ca1f3b53b2ca2ab71a to your computer and use it in GitHub Desktop.
closure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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