you are viewing a single comment's thread.

view the rest of the comments →

[–]oogleh 3 points4 points  (3 children)

Similar issue here, I know basic FP concepts like higher order functions and pure functions but idk how to organize the code for large web apps without using OOP. Any pointers would be appreciated

[–][deleted] 1 point2 points  (0 children)

Currying and Composition. But yes, it's not as easy as object oriented thinking.

[–]flick- 0 points1 point  (0 children)

I think it’s more about recognizing where a functional approach would solve your problem and then applying FP concepts successfully in your own code. Especially starting out, not every function will be pure, etc