Skip to content

Instantly share code, notes, and snippets.

@sunguru98
Created December 27, 2019 07:52
Show Gist options
  • Save sunguru98/076ffc8419497a6defcf5a3e9092026d to your computer and use it in GitHub Desktop.
Save sunguru98/076ffc8419497a6defcf5a3e9092026d to your computer and use it in GitHub Desktop.
Markdium-Functional Programming vs Object Orietned programming in JavaScript
const preMakeAdder = x => y => x + y
const tenAdder = preMakeAdder(10)
console.log(tenAdder(5)) // 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment