Skip to content

Jalalhejazi/learning-typescript

Repository files navigation

Learning-TypeScript

Lessons

  1. Getting Started
  2. Type System Introduction
  3. JavaScript Features (with TypeScript)
  4. Project
  5. Diving Deeper
  6. Integration

Resources

Tips

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

References