Clean code is readable and maintainable:
- Use descriptive names for variables and functions
- Keep functions short and focused
- Avoid deep nesting
- Don't repeat yourself (DRY)
- Write code for humans, not just computers
Code is read more often than written. Optimize for readability.