Clean Code - Chapter 2️⃣ : Meaningful Names
Use Intention Revealing Names
It should tell
why it exists
what it does
how it is used
If a name requires a comment, then the name does not reveal its intent.
Replace
int d;
with
int numberOfDays;
Avoid Disinformation
Avoid leaving false clue...
umangahuja.hashnode.dev4 min read