• Odinkirk@lemmygrad.ml
    link
    fedilink
    arrow-up
    4
    ·
    5 days ago

    That’s why you set the alternate/exit cases as individual if statements before whatever was going to be inside the original if block.

    To me too long to learn that.

    • Traister101
      link
      fedilink
      arrow-up
      5
      ·
      5 days ago

      My code got much more readable when I learned about early returns lol

      • lad@programming.dev
        link
        fedilink
        English
        arrow-up
        2
        ·
        4 days ago

        Early returns improve readability in that they make it simpler to read, but I also find them decreasing readability in that you may miss an early return and wonder why is execution not hitting the line you expect it to

        • Traister101
          link
          fedilink
          arrow-up
          3
          ·
          4 days ago

          I’d say in most cases that’s a sign something needs to be extracted into a separate function. Course sometimes code is just complicated and extracting only makes things harder to follow. Even then I’d much rather use early return than nested ifs as those are significantly harder for me to follow.