Code Smell 154 - Too Many Variables
You debug code and see too many variables declared and active
TL;DR: Variables should be as local as possible
Problems
Readability
Code Reuse
Solutions
Extract Method
Remove unused variables
Context
Our code should be dirty when programming...
maximilianocontieri.com2 min read