Table Of Contents
Notes on TypeScript.
Last Tended | |
---|---|
Planted | |
Status | Seed |
Definition
TypeScript is a strongly typed programming language that builds on JavaScript.
Advantages
TypeScript provides the following advantages over vanilla JavaScript:
- self-documentation,
- tooling that can be built on top of it, improving developer experience (example: IntelliSense) &
- it eliminates an entire class of runtime bugs (example: where a function gets passed an object it doesn’t know how to handle and fails at runtime).
Don't Use Enums
Execute Program did a great break down of the benefits of using unions instead of enums. Their main argument is TypeScript is supposed to be JavaScript, but with static type features added. If we remove all of the types from TypeScript code, what's left should be valid JavaScript code. Imagine we had this TypeScript code:
/index.ts
To compile, the compiler checks the code's types. Then it needs to generate JavaScript code. In this example, that would be removing all type annotations:
/index.js
Enums break this rule. If enums were removed like other type features, you would have JavaScript code referencing nothing:
/index.ts
/index.js
I agree with Execute Program. I don't believe the benefits of enums outweigh the complication they add to the TypeScript complier model & the possibility of difficult bugs hidden in build steps.