Programming Language
JavaScript
Function
Pure and Impure Functions

Understanding Pure and Impure Functions in JavaScript

In JavaScript, functions can be categorized into two types: pure and impure. Understanding the difference between these types is crucial for writing predictable and maintainable code. This article will explain what pure and impure functions are, their characteristics, and provide examples to illustrate the concepts.

What is a Pure Function?

A pure function is a function that, given the same inputs, will always return the same output and does not cause any side effects. Pure functions are predictable and easier to test because their output depends solely on their input parameters.

Characteristics of Pure Functions

  1. Deterministic: A pure function always produces the same output for the same set of inputs.
  2. No Side Effects: Pure functions do not modify any external state or variables. They do not rely on or alter the state of the program outside of their scope.

Example of a Pure Function

function add(a, b) {
  return a + b;
}
 
console.log(add(2, 3)); // Output: 5
console.log(add(2, 3)); // Output: 5

In the above example, the add function is pure because it always returns the same result when given the same arguments and does not modify any external state.

What is an Impure Function?

An impure function is a function that may produce different outputs for the same inputs or cause side effects by modifying external state or interacting with the outside world (e.g., changing a global variable, logging to the console, or making a network request).

Example of an Impure Function

let counter = 0;
 
function incrementCounter() {
  counter += 1;
  return counter;
}
 
console.log(incrementCounter()); // Output: 1
console.log(incrementCounter()); // Output: 2

In the above example, the incrementCounter function is impure because it modifies the external variable counter, causing a side effect.

Pure vs Impure Functions

To better understand the difference between pure and impure functions, let's compare them with a few more examples.

Example 1: Pure Function

function multiply(a, b) {
  return a * b;
}
 
console.log(multiply(2, 3)); // Output: 6
console.log(multiply(2, 3)); // Output: 6

The multiply function is pure because it always returns the same output for the same inputs and does not cause any side effects.

Example 2: Impure Function

function getRandomNumber() {
  return Math.random();
}
 
console.log(getRandomNumber()); // Output: (random number)
console.log(getRandomNumber()); // Output: (random number)

The getRandomNumber function is impure because it returns different outputs for the same inputs and relies on the external Math.random function.

Example 3: Pure Function with Arrays

function addToArray(array, element) {
  return array.concat(element);
}
 
const myArray = [1, 2, 3];
console.log(addToArray(myArray, 4)); // Output: [1, 2, 3, 4]
console.log(addToArray(myArray, 4)); // Output: [1, 2, 3, 4]
console.log(myArray); // Output: [1, 2, 3]
 

The addToArray function is pure because it returns a new array and does not modify the original array, ensuring no side effects.

Example 4: Impure Function with Arrays

function addToArrayImpure(array, element) {
  array.push(element);
  return array;
}
 
const myArrayImpure = [1, 2, 3];
console.log(addToArrayImpure(myArrayImpure, 4)); // Output: [1, 2, 3, 4]
console.log(addToArrayImpure(myArrayImpure, 4)); // Output: [1, 2, 3, 4, 4]
console.log(myArrayImpure); // Output: [1, 2, 3, 4, 4]

The addToArrayImpure function is impure because it modifies the original array, causing a side effect.

Conclusion

Understanding pure and impure functions helps write cleaner and more maintainable JavaScript code. Pure functions are predictable and easier to test due to their lack of side effects, while impure functions can interact with external state and produce varied results. Favoring pure functions wherever possible leads to more robust and reliable code, though impure functions are sometimes necessary for real-world applications.