DEV Community

Cover image for Pure vs Impure Functions
Suprabha
Suprabha

Posted on

Pure vs Impure Functions

These are the two terms that you always hear in a programming language called Pure and Impure functions.

You know Pure Function is always dependent on arguments and there should not be any side effects.

What hack is Side Effects? ☠️

When you try to use external code in the function or if you are mutating a variable then it creates a Side Effect.

Example:

let num = 10
function mul(val) {
    return num += val  
}
Enter fullscreen mode Exit fullscreen mode

As you can see in the above snippet, mul the function has a dependency on an outer variable called num. Also, mutating num value, which makes its impure function.

Let’s checkout one more quick example:

function hello() {
  console.log("Hello Folks!");
}
Enter fullscreen mode Exit fullscreen mode

So, what do you think about the above snippet? πŸ€”

.

.

.

Yeah! this is also an impure function πŸ˜΅β€πŸ’«

As you all know that JavaScript is synchronous, using `console` or any `callback` or `promise/fetch` will make the function asynchronous.

Here using the console, which is a Web API makes it an impure function.

Let's checkout other side effects with examples:

  1. DOM Manipulation, any callback or reading/writing files

    function mul(a,b) {
        document.write("Started Multiplication")
        return a * b
    }
    console.log(mul(2,5))
    
  2. Updating or Modifying a global variable in pure function

    let x = 10
    
    function mul(a,b) {
        document.write("Started Multiplication")
        return a * b * x
    }
    console.log(mul(2,5))
    
  3. Here also, mutating outer variable which is depending on an external variable.

    let x
    
    function mul(a,b) {
        x = 10
        return a * b * x
    }
    console.log(mul(2,5))
    

Let's Understand the Pure and Impure function, as now you have an idea of the side effects

Pure Function

  • It always returns theΒ same resultΒ if the same arguments are passed
  • It never depends on any state/data/change during the execution of a program
  • It always returns something
  • Here, writing test cases will be straightforward

Impure Function

  • Changing the internal state of any argument which has been passed
  • It may take effect without returning anything
  • Writing test cases will be a bit complicated as there may be side effects

Pure and Impure Methods

These are pure methods:

  • Array.map()
  • Array.reduce()
  • Array.filter()
  • Array.concat()
  • ... (spread syntax, which is mostly used to create copies)

These are impure methods:

  • Array.splice()
  • Array.sort()
  • Date.now()
  • Math.random()

Bonus Point πŸ”–

You can clone an external state into a pure function

Cloning an external state into a pure function does not make the function impure.

Example:

let name = ["suprabha", "supi"]

function fullName(newName, name) {
  let clonedName = [...name]
  clonedName[clonedName.length] = newName
  return clonedName
}

console.log(fullName("sumi", name)) // ['suprabha', 'supi', 'sumi']
Enter fullscreen mode Exit fullscreen mode

In the above snippet, you are using ... spread operator in fullName the function. It will create a clone of it and then update it. So, it doesn't depend on name variable.

Thanks for reading the post!

Hope you found this article useful. If you have any questions, feel free to drop them into the comment section or reach out to me here πŸ‘‡

🌟 Twitter πŸ“š Ebooks 🌟 Instagram

Oldest comments (0)