NOTES - Conferences notes about "clean code"
- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2439

About 0mn to read
To summarize clean code should be:
- maintainable
Read more:
To summarize clean code should be:
- maintainable (understandable by human)
- flexible (open to new features and improvements)
- tested
- easy too refactor
- Use setters and getters in the right context, for example: downloadPage() is not the same as getPage()