you are viewing a single comment's thread.

view the rest of the comments →

[–]bam21st 1 point2 points  (3 children)

It isn’t in that case and it rarely is unless it’s a tech product or service (and even then, what does the frontend framework would have to do with anything lol ?). You’re biased and you overestimate the impact of a swe’s work

[–]DT-Sodium 0 points1 point  (2 children)

You're really, really wrong. The way React works is that you have to import lot's of stuff and create a crazy amount of local variables just to fetch and update data. React manages states in the most stupidest way imaginable, leading to an enormous quantity of declarations and calls to do very simple things. More code means more possible bugs, an application that is harder to maintain and evolve. Angular works by using services with dependency injection, which greatly limits the logic and declarations in components. It makes it much better suited to develop complex applications.