DEV Community

Discussion on: Most effective and simplest way to write readable code.

Collapse
 
nikolamalesevic profile image
Nikola Malesevic • Edited

"having methods indicates that you plan to reuse the code inside it"

That's what really bothers me about having all those small functions. I don't need them anywhere else and my IntelliSense is soon full of garbage.

Collapse
 
girish3 profile image
Girish Budhwani • Edited

Separation of concern is another reason why we define methods and if we define proper method names then we need not worry about IntelliSense drop down list size.