I have googled this and even got to the second page, and there does not seem to be any kind of consensus.

As far as I can tell, it’s a bad idea because it creates code you don’t see and accepts inputs that you wouldn’t want. And yet, many people seem to like them more than, say, const unions due to being easier to refactor in bulk.

So what gives? Is this a case of IT people having very strong opinions on stuff that doesn’t matter? Or is there a technical reason for or against it?

7 points

Basically, you can use them if you want to, but every single case where you would use them would be better served with a union type.

permalink
report
reply
4 points
*

At work, when I was helping with some frontend stuff, we used object literals.

const DIRECTIONS = {
  UP: "UP",
  DOWN: "DOWN"
} as const;

type DIRECTIONS = typeof DIRECTIONS[keyof typeof DIRECTIONS];

Taken from option 2 in this blog post. https://maxheiber.medium.com/alternatives-to-typescript-enums-50e4c16600b1`___`

permalink
report
reply
1 point

This is, in my opinion, the absolute best way to do it

permalink
report
parent
reply

Community stats

  • 1

    Monthly active users

  • 28

    Posts

  • 6

    Comments