DEV Community

Discussion on: Any advice for someone who wants to start learning React.js?

Collapse
 
merri profile image
Vesa Piittinen • Edited

If you're planning to focus on web then spend time on HTML, CSS and DOM first. All the web standards.

Currently we have an overabundance of React-based apps that have weak usability, poor CSS architecture, and lots of re-invented wheels on features natively provided by the browser. All these factors result to unnecessary extra work which causes an endless cycle of write more JS to fix problems caused by using more JS.

React specifically often wants to solve problems "the React way" that are only relevant in the React mindset. This adds unnecessary complexity and causes problems you would never have if you know how things really work with the browser. This can give you an advantage in a job as you then know what NOT to solve with React.

Collapse
 
anuj1405 profile image
Anuj Kumbhar

💯

Collapse
 
bartoszkrawczyk2 profile image
Bartosz Krawczyk

Best take 👏