DEV Community

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

Collapse
 
myogeshchavan97 profile image
Yogesh Chavan • Edited

Before learning React.js, make sure to have a solid understanding of following ES6+ features because these features are heavily used in React.

  • let and const
  • arrow functions
  • object and array destructuring
  • object shorthand syntax
  • template literals
  • rest and spread operator
  • optional chaining
  • promises
  • import & export
  • async/await
  • array methods like find, filter, map, reduce etc
  • primitive types and reference types.

You can check out the below articles to learn more about it:

You can also check out this course.

Collapse
 
jr01 profile image
Jr

Thanks ❤

Collapse
 
myogeshchavan97 profile image
Yogesh Chavan

You're welcome