Skip to content

Instantly share code, notes, and snippets.

@waimyokyaw
Created March 17, 2018 14:28
Show Gist options
  • Save waimyokyaw/4af3ab46b05030635d9bacff3c85c130 to your computer and use it in GitHub Desktop.
Save waimyokyaw/4af3ab46b05030635d9bacff3c85c130 to your computer and use it in GitHub Desktop.
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