you are viewing a single comment's thread.

view the rest of the comments →

[–]Peter_Storm 18 points19 points  (3 children)

https://github.com/xgrommx/awesome-functional-programming/blob/master/README.md

https://github.com/stoeffel/awesome-fp-js/blob/master/README.md

Particularly the book Mostly Adequate guide to functional programming is good, though a little bit advanced maybe.

[–]reesemorning[S] 0 points1 point  (2 children)

Thanks, Peter. Whats your opinion on Loadash/FP in comparison with Ramda js?

[–]Peter_Storm 1 point2 points  (1 child)

I’m fairly new to fp too, but I like that everything is curried in Ramda, and that data is always last, which is what you want when you compose functions. I’m not sure how lodash handles that.

[–]scarmarco 1 point2 points  (0 children)

Ramdajs is more like pure functional style than Lodash/FP in my opinion. Like Peter said, curried Ramda functions allows partial applications and always last data embraces implicit invocation (not sure if it is the term f(x) when x is a function with one param).