Skip to content
Discussion options

You must be logged in to vote

I'd say, even with zero JavaScript knowledge it is still possible, but obviously the path will be longer.

The learn section https://nextjs.org/learn contains good resources to get started. As far as JavaScript patterns to know, I could sketch some basic:

  • pass by value / pass by reference, aka why console.log({} === {}) prints false
  • Array iterating with map/filter
  • let, const, arrow-functions, functions
  • async/await and Promises
  • callbacks and closures
  • JSX understanding

The nice thing is that you can learn those while practicing writing React within Next.js

I should also add, that Next.js is a web framework, that uses React. JavaScript/TypeScript plays a big role, but it is not the only kno…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@mirkashi
Comment options

Answer selected by mirkashi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
2 participants