Today I’m sharing a little trick that I like to use to make switch statements cleaner and more type-safe. Happy to hear other ideas!

  • @towerful
    link
    33 months ago

    Just have default throw an error? Then, if you add a value to the string union (hopefully) your tests will highlight it isnt handled.

    Equally, for such a simple switch, surely a map is better?
    But i rarely find myself using switches.
    I find ifs with early returns cleaner. Allows for variable creation during execution (which my tslint complains about)

    • @[email protected]
      link
      fedilink
      English
      23 months ago

      I really appreciate compile errors in this scenario. In Rust the compiler will freak out when there are missing enum variants in a match. Tests are great, but compiler errors don’t rely on exhaustive and properly written tests.