Published onMay 26, 2023View count20 viewsFunction names should say what they doCode-TipsSay what the function does with its name. The name should tell you what it expects as inputs as well.
Published onMay 25, 2023View count16 viewsUse Descriptive NamesCode-TipsChoosing good names takes time but it saves even more time. Names should give you useful information.
Published onMay 25, 2023View count5 viewsUse Pronounceable NamesCode-TipsLearn the importance of using pronounceable names in your code. Discover how it improves communication and enhances code readability and maintainability.
Published onMay 24, 2023View count13 viewsDon’t Use Magic NumbersCode-TipsImprove code clarity and searchability by replacing magic numbers with constants. Make your code more expressive and self-explanatory.
Published onMay 22, 2023View count9 viewsAvoid Mental MappingCode-TipsMaster the technique of avoiding mental mapping in your code. Enhance readability and eliminate confusion with explicit variable naming.