Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.06 KB

README.md

File metadata and controls

30 lines (20 loc) · 1.06 KB

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