Background
It’s perfectly normal to copy and paste code from the internet. In fact, most coding issues we face—whether bugs, styling challenges, or the need for a sleek page loader in plain CSS—often have solutions available online. We search for answers, and the internet offers a wealth of code snippets and guides. Of course, it’s essential to filter and verify these solutions to ensure they’re a good fit for our needs.
When writing code, it’s easy to get swept up in the convenience of copying and pasting code. Over time, though, we may start to notice that our code has become messy and hard to maintain. The pattern often goes like this:
- We encounter a problem.
- Search for a solution online.
- Copy the code we find.
- Paste it into our codebase.
- Move on.
As mentioned earlier, there's a good chance we’ll eventually face the same issues again. This cycle repeats, and we end up revisiting and re-copying solutions without truly integrating or understanding them (the challenges others faced have now become our own ?). So, we return to Step 1: Encounter a problem—and the cycle continues.
Solution
To avoid this hell circle, DRY principle might be the solution. The DRY principle, which stands for "Don't Repeat Yourself", is a software development principle that aims to reduce code duplication and repetitive patterns. Applying DRY principle to your code will replace repetitive code and logic with modular and referenceable code. Or in this article, to avoid you back again from step 5 to step 1 for the same problem.
Let’s take a look these examples:
Using Functions to Avoid Repetition
Function come to solve repetitive code. It is defintely wrong if you write a function but you still left repetitive code in your codebase.
If you find similar blocks of logic being repeated, refactor them into a reusable function.
// Before function calculateAreaRectangle(width: number, height: number): number { return width * height; } function calculateAreaTriangle(base: number, height: number): number { return 0.5 * base * height; }
Create a general-purpose function for area calculation.
// after function calculateArea(shape: "rectangle" | "triangle", dimension1: number, dimension2: number): number { if (shape === "rectangle") return dimension1 * dimension2; if (shape === "triangle") return 0.5 * dimension1 * dimension2; throw new Error("Invalid shape"); } // Usage const rectangleArea = calculateArea("rectangle", 5, 10); const triangleArea = calculateArea("triangle", 5, 10);
Creating Utility Functions
I am still talking about function: creating an utility function is one of the way to achieve clean code. Example, if multiple parts of your code convert a string to title case, extract that into a utility function.
// before let title1 = "hello world".split(' ').map(word => word[0].toUpperCase() + word.slice(1)).join(' '); let title2 = "good morning".split(' ').map(word => word[0].toUpperCase() + word.slice(1)).join(' ');
Consider to create a function to handle this problem.
// after function toTitleCase(input: string): string { return input.split(' ').map(word => word[0].toUpperCase() + word.slice(1)).join(' '); } let title1 = toTitleCase("hello world"); let title2 = toTitleCase("good morning");
Constants for Common Values
How many times you call an API which has the same endpoint? I believe, it is more than once.
If certain values like URLs or configuration options are used across your app, define them once as constants.
// Before function calculateAreaRectangle(width: number, height: number): number { return width * height; } function calculateAreaTriangle(base: number, height: number): number { return 0.5 * base * height; }
What if the backend changed the URL? If you are still write this code like the example above, you will change all the codes which contains the URL. It is a wise if you move the endpoint to a constant that you can change it once and all the API call still works because they follow the constant you have made.
// after function calculateArea(shape: "rectangle" | "triangle", dimension1: number, dimension2: number): number { if (shape === "rectangle") return dimension1 * dimension2; if (shape === "triangle") return 0.5 * dimension1 * dimension2; throw new Error("Invalid shape"); } // Usage const rectangleArea = calculateArea("rectangle", 5, 10); const triangleArea = calculateArea("triangle", 5, 10);
Got another idea?
Those examples are just a little to describe how important to keep our code to point and not keeping the repetitive code over and over again. Feel free to share in the comment box below your thought.
Summary
The DRY (Don't Repeat Yourself) principle is a fundamental coding practice that encourages developers to avoid redundancy by reusing code wherever possible. Applying DRY principles can significantly enhance maintainability, readability, and efficiency across a codebase, as it minimizes the number of places where changes need to be made when updates are required. The DRY principle is about creating reusable, maintainable code. By leveraging TypeScript's capabilities—like functions, generics, interfaces, and enums—you can keep your codebase clean and reduce redundancy.
The above is the detailed content of Dont Just Copy and Paste Code, Make It Reusable. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
