Hacker News new | ask | show | jobs
by JoeyJoJoJr 1956 days ago
In the case of React, I find functional programming excellent when it comes to mapping views from state. For state management, functional programming just seems like a massive time sink and a convoluted way of achieving the same things that OOP just gives you.
2 comments

> For state management, functional programming just seems like a massive time sink and a convoluted way of achieving the same things that OOP just gives you.

Huh? function(state(A)) = state(B), always.

Right, I don't know much about React myself, but that must be why Redux was created right?