Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 294 Bytes

File metadata and controls

10 lines (7 loc) · 294 Bytes

Introduction to TypeScript

  • TypeScript is a typed superset of JavaScript.
  • It adds additional syntax to JavaScript to support types.

Benefits

  • Catch bugs in compile time (i.e. you can catch bugs before running your code).
  • Better code completion.
  • Better understandability of code