• Eager Eagle
    link
    fedilink
    English
    11
    edit-2
    10 months ago

    Left side doesn’t look too bad until you realize that most people (including your future self) reading this file later will just be interested in the first 5 lines of the right side. They won’t care about all the details of how the pizza was made, and the left side has too big of a scope to quickly glance it and go to the part that matters.

    Not to mention reuse of functions and maintainability. Right side every time.

    • Waldowal
      link
      fedilink
      310 months ago

      I’d argue you’re right until you need to track down a bug in the code. Then, to the author’s point, you have to jump back and forth in the code to figure out all the interdependecies between the methods, and whether a method got overridden somewhere? What else calls this method that I might break by fixing the bug? (Keep in mind this example fits on one screen - which is not usually the case.)

      • Eager Eagle
        link
        fedilink
        2
        edit-2
        10 months ago

        all these debugging problems are still better to solve than if all the code was in the same scope like on the left side. It’s not worth exchanging possible overriding or data interdependency for a larger scope.