Sunday thought: Code comments should explain WHY, not WHAT. Bad comment: // Increment the counter counter++; Good comment: // Must increment before validation due to legacy API requirements counter++; The code already shows what you're doing. Comments should explain the reasoning that future devs (or you in 6 months) won't understand from the code alone.
0
0
2
90
0