Super Summary of Clean Code
Glance over and learn about Clean Code
Published in
2 min readMar 23, 2022
American Software Engineer and Author Robert C. Martin have done an awesome job by writing the book “Clean Code” in a detailed manner and with so many examples. By reading this book you can have a dramatic change in your coding mind. But who doesn’t have much time to read the full book and want to know the gist and utilize the concept of “Clean Code” this article can be the appropriate choice for you.
What is Clean Code?
- Understandable
- Readable
- Changeable
- Extensible
- Maintainable
Overall
- Standard conventions
- Simple & Stupid
- Cleaner than previous
Names
- Descriptive and unambiguous
- Meaningful
- Pronounceable
- Searchable
- Contextual
- Memorizable
- Consistent
Functions
- Small
- Single Task
- Descriptive names
- Fewer arguments