Programming Principles I: The Basics
Theodora Gyambrah
Passionate Software Engineer | Project Manager | Blockchain Developer | Engineering dreams - one line of code at a time
In the field of software engineering, collaboration on codebases is a regular and integral part of our work. To ensure smooth collaboration and mitigate conflicts, it is essential to lay down a foundation of fundamental principles and best practices that serve as a guiding framework for all involved.
In this article and the subsequent ones, we will embark on a journey to explore a selection of these guiding principles and practices. By steadfastly adhering to these guidelines, you can distinguish yourself as a skilled and proficient software engineer.
Without further delay, let’s dive right into them:
1. KISS(Keep It Simple, Stupid)
In software development, adhering to the KISS principle means writing code that is straightforward, easy to read, and minimizes unnecessary complexity. It involves avoiding overly complex algorithms, convoluted logic, and excessive use of features or technologies. By keeping code simple, developers can reduce the chances of bugs, improve maintainability, and enhance collaboration within development teams.
Let's consider an illustration of the KISS principle in the context of creating a function to find the maximum number in an array of integers.
Without KISS Principle:
function findMaxNumber(numbers) {
let max = Number.NEGATIVE_INFINITY; // Initialize with a very low value.
for (let i = 0; i < numbers.length; i++) {
if (numbers[i] > max) {
max = numbers[i];
}
}
return max;
}
In this example, the function uses a loop and an initial "max" value set to a very low number. It is a bit more complex, and the use of Number.NEGATIVE_INFINITY may be confusing.
With KISS Principle:
function findMaxNumber(numbers) {
return Math.max(...numbers);
}
In this simplified version, the Math.max function is used to find the maximum number in the array. The spread operator ... is employed to pass the array elements as separate arguments to the Math.max function. This approach is simpler, more concise, and easier to understand.
By applying the KISS principle in this case, we've achieved the same result with a much simpler and more straightforward solution. This makes the code easier to read, maintain, and less prone to errors.
2. YAGNI(You Aren’t Gonna Need It)
This principle advises against adding functionality or features to a system until they are proven to be necessary. In other words, don't implement things in anticipation of future needs; instead, implement only what is currently needed.
The YAGNI principle is closely related to the KISS principle. However, YAGNI goes a step further by discouraging the addition of features or code that have not been explicitly requested or validated by the current requirements.
3. DRY ( Don't Repeat Yourself)
The DRY principle is a fundamental concept that encourages developers to avoid duplicating code. It promotes code reusability and maintainability by advocating for the creation of abstractions, functions, or modules to encapsulate common functionality. The primary goal is to reduce redundancy in your codebase, making it easier to manage and maintain.
领英推荐
Let's look at a basic calculator example to see how the DRY principle works.
Without DRY Principle:
function add(a, b) {
return a + b;
}
function subtract(a, b) {
return a - b;
}
function multiply(a, b) {
return a * b;
}
function divide(a, b) {
return a / b;
}
const result1 = add(5, 3);
console.log("Result 1 (Addition):", result1);
const result2 = subtract(8, 2);
console.log("Result 2 (Subtraction):", result2);
const result3 = multiply(4, 6);
console.log("Result 3 (Multiplication):", result3);
const result4 = divide(9, 3);
console.log("Result 4 (Division):", result4);
In this example, we have separate functions for each operation (add, subtract, multiply, divide). This approach leads to code duplication because each function essentially performs a similar task of taking two numbers and performing a specific operation.
With Dry Principle:
function calculate(a, b, operation) {
switch (operation) {
case "add":
return a + b;
case "subtract":
return a - b;
case "multiply":
return a * b;
case "divide":
return a / b;
default:
return "Invalid operation";
}
}
const result1 = calculate(5, 3, "add");
console.log("Result 1 (Addition):", result1);
const result2 = calculate(8, 2, "subtract");
console.log("Result 2 (Subtraction):", result2);
const result3 = calculate(4, 6, "multiply");
console.log("Result 3 (Multiplication):", result3);
const result4 = calculate(9, 3, "divide");
console.log("Result 4 (Division):", result4);
In this second example, we have reduced code duplication by introducing a single function called calculate. This function takes three parameters: two numbers and an "operation" parameter. The "operation" parameter is used to specify which arithmetic operation to perform. This single function can handle a range of operations, making the code more efficient and maintaining the DRY principle.
4. Fail Fast
The Fail Fast principle suggests detecting and reporting errors as early as possible in a program's execution rather than allowing them to propagate and potentially cause more complex issues later. By identifying problems early, you can enhance the robustness and maintainability of your software.
Let's illustrate this principle with an example related to input validation:
function calculateSquareRoot(number) {
if (typeof number !== 'number' || number <= 0) {
throw new Error("Input must be a positive number");
}
return Math.sqrt(number);
}
try {
const result = calculateSquareRoot(-4);
console.log(result);
} catch (error) {
console.error(error.message);
}
In this example, the calculateSquareRoot function checks whether the input is a positive number before performing the square root calculation. If the input is invalid, it throws an error immediately, ensuring that the code doesn't continue to execute under uncertain or faulty conditions.
5. Clean Code
Clean code is a term used to describe a source code that is well-organized, easy to read, and maintainable. While the principles mentioned earlier (KISS, YAGNI, and DRY) contribute to achieving these objectives, let's delve deeper into the characteristics that define clean code, uncovering additional strategies for achieving this goal.
In Conclusion,
This article has laid a solid foundation, exploring key programming principles and practices such as KISS, YAGNI, DRY and Clean Code, which are essential for efficient and maintainable code.
However, our journey into the world of programming principles doesn’t end here. In the next article(link here ) we will take a deeper dive into other principles, including SoC, LoD, and LoLA. These will further enrich your understanding and empower you to write code that not only works but is elegant.