You have JavaScript fundamentals—TypeScript adds static types on the same runtime. Most React and Next.js courses assume TS.
What changes
- Annotations:
const n: number = 1 - Interfaces describe object shapes
- Compiler catches many bugs before Run
- Output is still plain JavaScript
Continue learning
Open TypeScript intro then framework tracks: React, Vue, or Node.js for server APIs.
Important interview questions and answers
- Q: Types at runtime?
A: Erased—only JavaScript runs in browser/Node. - Q: Must learn TS?
A: Not mandatory but standard on professional front-end teams.
Self-check
- What does TypeScript add?
- Name one framework that pairs with this track.
Next: Open /typescript/intro after this track.
Interview prep
- Types erased?
TypeScript compiles away to JavaScript.