Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • If you want to be explicit on which data fields the showStudentInfo method uses, have it take an interface StudentInfo { getName(): string; getAge(): int } instead of a concrete Student. Commented Jul 30, 2024 at 20:28
  • 3
    'GlobalData' is a hidden dependency because it is not passed to the function. Commented Jul 31, 2024 at 3:46
  • My primary issue is I can't see clearly if showStudentInfo() changes the student, I don't care what fields it reads. Commented Aug 1, 2024 at 8:04