9
Comments
  • 0
    Show us the shitty code!
  • 2
    @GinjaNinja sure. If (something) { return true } else { return false };
  • 2
    Typical newbie fail... Hate it every time I see it. Bloats the code and is absolutely useless.
  • 0
  • 1
    @GinjaNinja can't see the emoji. I just see [X]. Did you set "canSeeEmjoi" : true; ?
  • 1
    Early-exit ftw. Just immediately return as soon as possible (for example in fail situations), so the only case remaining is the intended one, thus barely any else-block is needed.
  • 2
    I see this kind of mistake as a clear lack of proof reading your code. It's like an essay. First working version is a draft. Then you have to go back and look for improvements. So many people skip this step.
Add Comment