Created
October 3, 2017 17:21
-
-
Save lukehedger/61b2de10e53435d1494f476b066bc06c to your computer and use it in GitHub Desktop.
π
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
function first(prop1) { | |
console.log(prop1) | |
return function (prop2) { | |
console.log(prop1 + prop2) | |
} | |
} | |
first(1)(2) // => 1, 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment