+ 5
Does how you write code describe how good of a coder you are?
I am one of those people who write code without comments but i do arrange the code in an understandable logical manner.Does this imply that i am a bad coder. PS I AM A BEGINNER SO TAKE IT EASY ON ME
5 Respuestas
+ 7
it is good to write comments that you and people that maybe will read your code better understand it later, but if you don't write them that does not mean that you are bad code, most important thing is that you do thing that is needed...
+ 5
You don't write comments in your code,and so what?I hardly write comments in my code,as long as you perfectly understand what you're doing,comments are not mandatory
0
You can tell how good a programmer is by how short their code is with the required result
0
Yes. It does.
But comments are only a small part.
Choose descriptive names.
Keep steps in a function on a single level of abstraction.
Don't repeat yourself.
Give each part one job.
- 1
I do not write comments and stack arguments. I do not care if people understand it, it just needs to work as efficient as possible.