• steventhedev@lemmy.world
    link
    fedilink
    arrow-up
    52
    ·
    14 hours ago

    Ew no.

    Abusing language features like this (boolean expression short circuit) just makes it harder for other people to come and maintain your code.

    The function does have opportunity for improvement by checking one thing at a time. This flattens the ifs and changes them into proper sentry clauses. It also opens the door to encapsulating their logic and refactoring this function into a proper validator that can return all the reasons a user is invalid.

    Good code is not “elegant” code. It’s code that is simple and unsurprising and can be easily understood by a hungover fresh graduate new hire.

    • YaBoyMax@programming.dev
      link
      fedilink
      English
      arrow-up
      9
      ·
      9 hours ago

      This is the most important thing I’ve learned since the start of my career. All those “clever” tricks literally just serve to make the author feel clever at the expense of clarity and long-term manintainability.

    • traches@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      40
      ·
      14 hours ago

      Agreed. OP was doing well until they replaced the if statements with ‚function call || throw error’. That’s still an if statement, but obfuscated.

      • BrianTheeBiscuiteer@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        12 hours ago

        Don’t mind the || but I do agree if you’re validating an input you’d best find all issues at once instead of “first rule wins”.

    • verstra@programming.dev
      link
      fedilink
      arrow-up
      14
      ·
      13 hours ago

      I agree, this is an anti-pattern for me.

      Having explicit throw keywords is much more readable compared to hiding flow-control into helper functions.

    • Womble@lemmy.world
      link
      fedilink
      English
      arrow-up
      6
      arrow-down
      5
      ·
      edit-2
      13 hours ago

      Good code is not “elegant” code. It’s code that is simple and unsurprising and can be easily understood by a hungover fresh graduate new hire.

      I wouldnt go that far, both elegance are simplicity are important. Sure using obvious and well known language feaures is a plus, but give me three lines that solve the problem as a graph search over 200 lines of object oriented boilerplate any day. Like most things it’s a trade-off, going too far in either direction is bad.