- Getting Started
- Type System Introduction
- JavaScript Features (with TypeScript)
- Project
- Diving Deeper
- Integration
Always use let
and const
over var
, with const
preferred over let
. TypeScript will handle this properly and the compiler will error if const
is being reassigned. const
and let
are introduced in Chapter 3.
Always Review Node Best Practices