this post was submitted on 10 Oct 2023
9 points (90.9% liked)
TypeScript
910 readers
37 users here now
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.
To add, turning everything into an enum can make the code nearly unreadable and hard to work with. This isn't Rust, and there's no performance gain for using enums over string unions.
Or by an enum class.
Another good option is const objects, it's a recommended alternative in the official docs. https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums