66
Amiter
6y

someone asked me what does commenting code means, here's my response.

Comments
  • 2
    Great code explains itself. Please read "Clean Code".
  • 2
    I definitely second what @ziemek99 said. I've seen so many people use a comment to describe a block of code instead of turning that block of code into a method with a proper name, or creating proper abstractions because they trust their comments will make it clear to other developers.

    I review candidate's work often at my job, and if they use comments it's usually a sign that either they're not familiar with the code they're writing, or it's vastly too complicated.
  • 1
    @achintyakumar context my dude
Add Comment