Why React
Imperative vs Declarative
Imperative: Writing the steps for how the user interface should be updated.
Declarative: Instead of having to write DOM methods, it would be helpful if developers were able to declare what they want to show (in this case, an h1 tag with some text).
When it comes to building user interfaces, a declarative approach is often preferred because it can speed up the development process.
Why Next