KISS
Keep it simple stupid
Summary
Your code should be simple and straightforward, so its easily understandable by human beings.
Easily understandable by human beings
Consider the below example:
Easy to understand
Complex to understand
Keep your methods small
Keep functions as small as possible and make sure they do just one thing, rather have ten functions doing just one thing than one function doing ten things.
If you have a lot of conditions in the method, break these out into smaller methods. It will not only be easier to read and maintain but also can find bugs a lot faster.
Avoid Ternary Operators
Avoid putting ternary operators within blocks of code.
Ternary operators are best used within small methods, where the method named explains the purpose.
Last updated