Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created July 10, 2019 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/512007bcd3bedabdb48883e600cfef9e to your computer and use it in GitHub Desktop.
Save gdyrrahitis/512007bcd3bedabdb48883e600cfef9e to your computer and use it in GitHub Desktop.
const phrase = 'Welcome';
const result = phrase
|> append(' to')
|> append(' Functional Programming')
|> append(' I hope you like')
|> append(' pipelining!')
|> removeTheLetter('i')
|> makeLetterUpperCase('o')
|> makeLetterUpperCase('a')
|> makeLetterUpperCase('e')
|> removeWordsWithLessThanFourLetters // partial function application
console.log(result);
// prints: WElcOmE FunctOnAl PrOgrAmmng ppElnng!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment