4

It is better to write almost all of the logic used in the code as comments/documentation.
Trust me.
It is a good thing. It increases Code readability.
Nobody is going to copy your logic and get hired in a high paying job or get promoted for that reason. People will come to know about your wit and will appreciate you instead.

Comments
  • 4
    Some commenting is reasonable you are right but if you have to comment all of the logic it is a sign of bad code. If you follow the clean code paradigms your code should speak for itself. Regarding good documentation you are right , they are very very useful than again they shouldn't explain the code itself
  • 1
    Less comments. Focus on better and readable code
Add Comment