First, we need to thoroughly understand two concepts.
- Pass by value.
- Pass by reference.
Pass by value
It simply means, While calling a function. You are passing values directly inside a function as an argument.
EG:
// function declaration
function greet(name){
console.log(`hello ${name}!`);
}
// function calling
greet("Hemendra");// <- we're passing value as an argument
// prints --> hello Hemendra!
Pass by reference
It simply means, While calling a function, You will pass a reference of a constant or a variable instead of a value directly inside a function as an argument.
EG:
// function declaration
function greet(name){
console.log(`hello ${name}!`);
}
const name = "Hemendra";
// function calling
greet(name); // <-- we're passing a reference of a constant called name
// prints --> hello Hemendra!
Pretty simple right?
Yes, it's that simple!
But, there is more to understand here. Let's understand this by an example.
EG:1
// You might have written something like this before
let score = 10;
let temp = score;
temp = temp + 2;
console.log(`score is ${score}`); // prints-> score is 10
console.log(`temp is ${temp}`); // prints-> temp is 12
EG: 2
// You might have done something like this as well
let todos = ["T1", "T2"];
let tempTodos = todos;
tempTodos.push("T3");
console.log(`old todos are ${todos}`);
// prints-> old todos are T1, T2, T3
console.log(`temp todos are ${tempTodos}`);
// prints-> temp todos are T1, T2, T3
Wait whatttttt??
Yes, I was also like this when I was a beginner. Let's understand what just happened in the above example.
Remember this
- While working with primitive data type in JavaScript we copy its value.
EG: string, number, boolean, symbol, undefined, null
.
- While working with non-primitive data type in JavaScript we copy its reference.
EG: arrays, objects, functions
Explanation
In the first example, we used the primitive data type that is why the score and temp variable's value was different.
But, In the second example, we used an array that was a non-primitive data type, and while copying the variable, we have reference of it instead of its value. Hence both the variables todos
and tempTodos
were pointing to the same value in the memory.
Thus, while changing the tempTodos variable, todos variable was also changing.
Tip:
We often encounter an array of objects while building any application.
We create multiple functions to modify the array of objects.
But do remember this concept,
How array or objects are copied in JavaScript,
Else you will end up facing a lot of bugs in your app.
follow me for more such blog posts.
Let me know if this blog was helpful.
Top comments (2)
Although this teaches an important concept in JavaScript, saying that you should never modify (mutate) an object is false. Mutations are more performant than creating object clones, especially if your talking about deep object cloning.
Anyway, the article is good, but I hope it doesn't mislead newer JavaScript developers. There is a time to mutate an object and a time to clone it.
Well said James,
There is a time to mutate an object and a time to clone it.
JavaScript devs should know how things work under the hood. So that if they ever face such bugs in their code they should know how to solve them.
Title updated 🫡