Code Smell 81 - Result
result = ???
TL;DR: Use good names always. Result is always a very bad name.
Problems
Readability
Solutions
Rename result.
If you don't know how to name it, just name the variable with the same name as the last function call.
Don't use IDEs wi...
maximilianocontieri.com2 min read