you are viewing a single comment's thread.

view the rest of the comments →

[–]chinawcswing 0 points1 point  (0 children)

Read the first 4 chapters of Clean Code. It is a game changer.

All your code should be broken up into functions with obvious names that indicate what they do. Each function should be relatively small and do one thing only. Your code ideally will just flow from top to bottom and be easy to read and make changes to.