HomeTutorialsArticlesAbout MeContact

What is the difference between passing by value or by reference in JavaScript

By Alberto Montalesi
Published in Article
June 06, 2020
1 min read
Check out my Github for my free-to-read JavaScript Ebook that covers all the new features from ES6 to 2021. If you want find a great place for interactive tutorials, i recommend Educative where you can find my JavaScript course
This website contains affiliate links.

If you just started learning how to code you may have heard the terms pass by value and pass by reference but you may not be 100% clear as to what they mean.

In this article we will go over the difference between the two, using JavaScript as the language of reference.

First of all, let’s define what these two terms mean:

  • pass by value means that when we pass a variable to a function, it is copied over onto a new one and a change inside of the function scope will not be reflected outside of it
  • pass by reference, on the other hand, means that our variable is not copied over onto a new one but simply referenced in our function so a change inside of the function will be reflected outside of it

Pass by value

JavaScript always passes arguments by values, meaning that a new variable is created inside the scope of the function so changing its value inside of it will not affect what’s outside of the scope.

Let’s look at this simple example:

function incrementNumber(num) {
  num = num + 1
  console.log(num)
}

let myNumber = 1
incrementNumber(myNumber)
// 2
console.log(myNumber)
// 1

As you can see, the value got updated inside of the function, but the original variable that we passed as the argument of the function did not change.

Pass by reference

We just mentioned that JavaScript always passes arguments by value so when is it that we actually can leverage passing by reference?

Let’s look at this example:

function increaseAge(person) {
  person.age = person.age + 1
  console.log(person.age)
}

const me = {
  name: 'Alberto',
  age: 27,
}

increaseAge(me)
// 28
console.log(me.age)
// 28

As you can see, this time instead of a Primitive, I passed an Object and when I changed the value of a property of that object, the change was reflected outside of the scope of the function.

Does this mean that Objects are passed by reference in JavaScript? The answer is no and this simple example will show you why JavaScript always passes by value.

function increaseAge(person) {
  person = {
    name: 'Alberto',
    age: person.age + 1,
  }
  console.log(person.age)
}

const me = {
  name: 'Alberto',
  age: 27,
}

increaseAge(me)
// 28
console.log(me.age)
// 27

What happened here? Why this time when we accessed me.age the value was not changed?

The reason is that the Object is passed by value but its value (its properties) is just a reference to that of the original Object. That’s why when we changed a property of the object inside of our function, that change was reflected outside of it but when we change the Object itself to a new one the change was not reflected outside because we changed the new one that lived inside of the function scope.



Tags

beginnersarticle
Previous Article
Discover more Console methods available in JavaScript and learn how to style them

Alberto Montalesi

Software Developer

buy me coffee
complete guide to modern javascript book cover

Complete Guide to Modern JavaScript

Get the Course

Category

Article
Challenge
Tutorial

Related Posts

Everything new coming in ES2022
September 08, 2020
5 min
© 2022, All Rights Reserved.

Quick Links

TutorialsArticlesChallenges

Social Media