Created
March 17, 2018 14:28
-
-
Save waimyokyaw/4af3ab46b05030635d9bacff3c85c130 to your computer and use it in GitHub Desktop.
This file contains 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 addSix = createBase(6); | |
console.log(addSix(10)); // returns 16 | |
console.log(addSix(21)); // returns 27 | |
function createBase(i){ | |
return (y) => { | |
return y + i; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment