-
SummaryIs it necessary to learn JavaScript before learning Next.js? Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
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:
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 knowledge area. In general, knowing how the web works, is also necessary, understanding client-server communication, how data is transferred, and persisted, etc... but these can come later on. |
Beta Was this translation helpful? Give feedback.
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:
console.log({} === {})
prints falseThe 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…