Category: Clean Code

Clean Code : Keep code clean :: Variable Declarations 0

Clean Code : Keep code clean :: Variable Declarations

Developers are authors. And one thing about authors is that they have readers. Variable Declarations Variable Declarations Variables should be declared as close to their usage as possible. Because our functions are very short....

formatting.png 0

Clean Code : Keep code clean :: Formatting

Developers are authors. And one thing about authors is that they have readers. Formatting Formatting First of all, let’s be clear. Code formatting is important. It is too important to ignore and it is...

meaningful Names 0

Clean Code : Keep code clean :: Meaningful Names

Developers are authors. And one thing about authors is that they have readers. Meaningful Names Meaningful Names Names are everywhere in software. We name our variables, our functions, our arguments, classes, and packages. We...