Created
September 9, 2012 15:11
-
-
Save aoi0308/3684934 to your computer and use it in GitHub Desktop.
クロージャのサンプル その2
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 plus5 = addfac(5); | |
console.log(plus5(10)); | |
function addfac(n) { | |
return function(m) { | |
return n + m; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment