Skip to content

learn-co-curriculum/javascript-pure-functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript Pure Functions

Overview

We'll define and write pure functions and also rewrite functions to be pure.

Objectives

  1. Define the inputs and outputs of a "pure function"
  2. Define and identify side effects
  3. Write functions without side effects

What's a pure function?

Blue Sky

Only 99.1% pure. Amateurs.

A pure function is a function that:

  • returns output solely based on its input (the parameters, if there are any);
  • is free from any side effects.

For example:

const cart = [];

function addToCart(item) {
  cart.push(item);
}

addToCart() is not a pure function: the function modifies a variable outside of its own scope. The result wouldn't always be the same — what if we accidentally change the item variable? It's not returning a value either - if we can call a function and not worry about the return value, it is by definition impure.

Instead: consider this:

const cart = [];

function addToCart(cart, item) {
  return cart.concat([item]);
}

Here, addToCart() is a pure function — it returns a new cart with the item added to it, but it doesn't modify any shared state. It simply takes in two values (the cart and the item) and returns a new value (the updated cart). You might be wondering why we're not calling cart.push(item) instead — that's because it modifies the original array, which means that our function is mutating variables outside of its own scope (the cart variable that is passed in would be updated). Impurity, begone!

We can also slightly rewrite this to make use of the ES2015 spread operator and arrow functions:

const cart = [];

const addToCart = (cart, item) => [...cart, item];

Side effects can be things like console.log, saving something in a database (in the case of Node.js), fetching some remote data, mutating shared program state that is outside of the function, et cetera. All of these will make your function impure. Pure functions make us more confident — without fail, it will yield the same result as long as we pass in the same values. Easy as that!

Idempotency

Fancy word, right? You'll sometimes notice this word being thrown around. It might sound intimidating, but all it means is that the function can be repeated many times and you'll still end up with the same result. For example, a function that sets the text value of an input is idempotent - you can call it as many times as you want with the same value, and it will still set the same value on the input, no matter how many times you run the function.

Pure functions are by definition idempotent since all they do is take input values and return an output value. If the input values stay the same, so will the result. An idempotent function, however, is not always a pure function. An idempotent function can still have side-effects, for example, removing an item in a database. The function can be called several times, and the item will still be gone.

Impostors are afoot

Some functions might appear to be pure, but after closer inspection they're not! For example, let's say we have some data on our favorite superheroes:

let heroes = [
  { firstName: 'Tony', lastName: 'Stark', heroName: 'Iron Man' },
  { firstName: 'Steve', lastName: 'Rogers', heroName: 'Captain America' },
  { firstName: 'Barry', lastName: 'Allen', heroName: 'The Flash' },
];

Now, let's create a function that adds an initials property to our heroes:

function addInitialsToHeroes(heroes) {
  heroes.forEach(hero => {
    hero.initials = hero.firstName.charAt(0) + hero.lastName.charAt(0);
  });
  
  return heroes;
}

let heroesWithInitials = addInitialsToHeroes(heroes);

The return heroes; part might make us feel good about ourselves — we're returning a value based on the heroes input, right? We're forgetting something though: the original array and the objects are being modified in the process! After running the function, we can access the original array to see that its elements have been modified as well:

console.log(heroes[0].initials); // prints 'TS'

Let's rewrite our function to be pure instead, and using some ES2015 goodies:

const addInitialsToHeroes = heroes => heroes.map(hero => Object.assign({}, hero, {
  initials: hero.firstName.charAt(0) + hero.lastName.charAt(0),
}));

In our rewritten function, we're mapping the array and then returning a new object in its place using Object.assign(). Now our original array isn't modified:

let heroesWithInitials = addInitialsToHeroes(heroes);

console.log(heroes[0].initials); // prints undefined

Resources

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published