Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 674 Bytes

typescript.md

File metadata and controls

21 lines (13 loc) · 674 Bytes

TypeScript

What advantages are there to using TypeScript?
  • It provides strong typing, with powerful type intference capabilities.
  • It enables IDEs to provide code completion, advanced code refactoring, and static checking.
  • It provides support for the latest JavaScript features, while compiling code into more compatible expressions.
  • It provides the ability to define interfaces.

What are some good books for learning TypeScript?