• 0 Posts
  • 29 Comments
Joined 1 year ago
cake
Cake day: August 2nd, 2023

help-circle








  • Fair. I guess in this case, it’s a manner of gauging who you’re working with. I’d much rather answer a question once in a while than over-comment (since refactors often make comments worthless and they’re so easy to miss…), but if it’s a regular occurrence, yeah it would get on my nerves. Read the fuckin name of the function! Or better yet go check out what the function does!



  • Yeah. I advocate for self explanatory code, but I definitely don’t frown upon comments. Comments are super useful but soooo overused. I have coworkers that aren’t that great that would definitely comment on the most basic if statements. That’s why we have to push self explanatory code, because some beginners think they need to say:

    //prints to the console
    console.log("hello world");
    

    I think by my logic, comments are kind of an advanced level concept, lol. Like you shouldn’t really start using comments often until you’re writing some pretty complex code, or using a giant codebase.







  • People hate hearing that they are bad coders 😂

    You and the other guy are saying to focus on writing code with less indentation and using smaller methods, and you both got downvoted.

    I fully agree, small methods all the way, and when that’s not possible it’s time to refactor into possibility!