DEV Community

Discussion on: JavaScript vs React Fundamentals

Collapse
 
joaolss profile image
João Lucas Silva

In my opinion, the two most important JS fundamentals in a React hooks era is

  • Reference equality (this will govern when your hooks and your components will be updated)
  • Closures (this will govern how your hooks work, which data they have access, and which side effects you should see)

Otherwise great article!

Collapse
 
yonatankawo profile image
Yonatan Kawo

Great points! My article is meant for beginners, and I believe your observation goes beyond that.