Skip to content

Instantly share code, notes, and snippets.

@leandromoreira
Created April 27, 2016 03:11
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
// brief explanation of what happens here
var sumCharsOnList = compose(sum, lenght, toUpperCase)
sumCharsOnList(["NX", "PS4", "XboxOne"])
// --> first the list ["NX", "PS4", "XboxOne"] is passed to the function toUpperCase
// --> toUpperCase returns another list and it's the input for the lenght function
// --> the lenght function return a list of integers which will become the input for sum function
// --> sum function will reduce the list summing all the integers and returning the sum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment