2024-07-30
3735
#typescript
Alexander Nnakwue
73729
Jul 30, 2024 â‹… 13 min read

TypeScript string enums, and when and how to use them

Alexander Nnakwue Software engineer. React, Node.js, Python, and other developer tools and libraries.

Recent posts:

how to use the Interest Invoker API for better, more accessible UX

How to use the Interest Invoker API for better, more accessible UX

Explore how to use Google’s new experimental Interest Invoker API for delays, popovers, and smarter hover UX.

Emmanuel John
Jun 19, 2025 â‹… 7 min read
How To Build And Deploy A Web App With Bolt.new

How to build and deploy a web app with Bolt

Bolt.new revolutionizes how you build and deploy web apps with no-code development and seamless AI integration.

Isaac Okoro
Jun 19, 2025 â‹… 8 min read
how to get the most out of Cursor

Frontend devs: Here’s how to get the most out of Cursor

Learn how to get the most out of Cursor AI — one of the hottest tools in AI-assisted coding, with practical workflows and underrated features.

Isaac Okoro
Jun 18, 2025 â‹… 5 min read
When to Use OpenAI vs. Open Source LLMs LogRocket

When to use OpenAI vs. open source LLMs in production

Learn about OpenAI vs open source LLMs for frontend devs, with an integration guide, costs, performance comparison, and implementation tips.

Clara Ekekenta
Jun 17, 2025 â‹… 6 min read
View all posts

2 Replies to "TypeScript string enums, and when and how to use them"

  1. Great article! Helped me a lot.

    I think I found one error:

    // this is same as
    // type direction = ‘UP’ | ‘DOWN’ | ‘LEFT’ | ‘RIGHT’;
    type direction = keyof typeof Direction;

    The comment should be:
    // type direction = ‘Up’ | ‘Down’ | ‘Left’ | ‘Right’;

  2. Hello Matt, yes thanks for the feedback and I’m glad you found the post helpful. We will update the comment as soon as possible. Thanks again

Leave a Reply