Left Arrow

Notes

TypeScript

A square with the letters 'TS'.

TypeScript

Last Tended

Status: sprout

TypeScript is a strongly typed programming language that builds on JavaScript.

A man modifying a gun using a holographic HUD (heads-up display).

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) &
  • through static analysis, 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).
An empty circle with a line through it.

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. For example:

TypeScript Code

/index.ts

function add(x: number, y: number): number {
  return x + y;
}

TypeScript Removed

/index.js

function add(x, y) {
  return x + y;
}

Enums break this rule. If enums were removed like other type features, you would have JavaScript code referencing nothing:

TypeScript Code

/index.ts

enum HttpMethod {
  Get = 'GET',
  Post = 'POST',
}

const method: HttpMethod = HttpMethod.Post;
method; // Evaluates to 'POST'

TypeScript Removed

/index.js

const method = ???;
method;

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.

A space ship's docking bay with various equipment.

Resources

People to Follow
Matt PocockBuilding Total Typescript

Where to Next?

└── JavaScript
├── npm
├── Objects
├── Scopes
├── State Management
├── Types
Arrow pointing down
YOU ARE HERE
├── TypeScript
└── Variables
A sci-fi robot taxi driver with no lower body