search
HomeWeb Front-endJS TutorialDetailed explanation of the difference between value passing and reference passing in JS

This article will give you a detailed understanding of the difference between value and reference passing in JavaScript. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

Detailed explanation of the difference between value passing and reference passing in JS

In JavaScript, you can pass by value and reference. The main difference between the two is that pass-by-value occurs when assigning a primitive type, whereas pass-by-reference occurs when assigning an object. Take a closer look below.

1. Understand basic types and objects

JavaScript provides 2 data types: Basic types and objects.

The basic types are number, boolean, string, symbol,null,undefined.

// 基本类型
const number = 10;

const bool = false;

const str = 'Hello!';

const missingObject = null;

const nothing = undefined;

The second category is objects, ordinary objects, arrays, functions, etc. are all objects.

// Objects
const plainObject = {
  prop: 'Value'
};

const array = [1, 5, 6];

const functionObject = (n1, n2) => {
  return n1 + n2;
};

In other words, any value that is not a primitive type is an object.

2. Pass by value

The simple rule of pass by value is that all basic types in JS are passed by value, it’s that simple.

Passing by value means that every time a value is assigned to a variable, a copy of the value is created, every time.

Detailed explanation of the difference between value passing and reference passing in JS

As an example, suppose we have two variables a and b:

let a = 1;
let b = a;

b = b + 2;

console.log(a); // 1
console.log(b); // 3

The first statement declares a variable a and assigns the value to 1.

The second statement declares a variable b and assigns the value of a to it.

Finally, b = b 2 increases by 2 and becomes 3. The b variable changes, and the change does not affect the value of a.

3. Pass by reference

The method of passing by reference is different from passing by value.

When an object is created, a reference to the object is obtained. If two variables hold the same reference, changes to the object will be reflected in both variables.

Detailed explanation of the difference between value passing and reference passing in JS

Please look at the following code:

let y = x;

y.push(2);

console.log(x); // [1, 2]
console.log(y); // [1, 2]

First statementlet x =[1]Create An array, define a variable x, and initialize the variable with a reference to the created array.

Then let y = xdefine a variable y and initialize y using the reference stored in the x variable , which is a pass-by-reference.

yChange the array through y.push(2). Because the x and y variables refer to the same array, this change is reflected in both variables.

Note: For simplicity, I say variables contain references to objects. But strictly speaking, the value contained in a variable in JavaScript is a reference to an object.

[Recommended learning: javascript advanced tutorial]

4. Comparison between value transfer and reference transfer

In comparing objects It is important to understand the difference between values ​​and references.

When using the strict comparison operator ===, two variables are equal if their values ​​are the same. All comparisons below are equal

const one = 1;
const oneCopy = 1;

console.log(one === oneCopy); // true
console.log(one === 1);       // true
console.log(one === one);     // true

one and oneCopy have the same value 1. When both operands are 1, the operator === evaluates to true.

But the comparison operators === work differently when comparing references. 2 references are only equal if they refer to the exact same object.

ar1 and ar2 hold references to different array instances:

const ar1 = [1];
const ar2 = [1];

console.log(ar1 === ar2); // false
console.log(ar1 === [1]);  // false

const ar11 = ar1;
console.log(ar1 === ar11); // true
console.log(ar1 === ar1);  // true

ar1 and ar2References an array with the same structure, but the calculation result of ar1 === ar2 is false, because ar1 and ar2 refer to different array object.

The comparison operator returns true only when comparing references pointing to the same object: ar1 === ar11 or ar1 === ar1.

5. Summary

In JavaScript, primitive types are passed as values: meaning that every time a value is assigned, a copy of that value is created.

On the other hand, objects (including ordinary objects, arrays, functions, and class instances) are references. If an object is modified, all variables that reference it will see the changes.

Comparison operators distinguish between comparison values ​​and references. 2 variables holding a reference are equal only if they refer to the exact same object, however, 2 variables holding a value are equal as long as the variable has the same 2 values ​​(from a variable, a literal, etc.), no matter where the value comes from. The variables are equal.

Original address: https://dmitripavlutin.com/value-vs-reference-javascript/

Author: Ahmad shaded

Translation address: https:/ /segmentfault.com/a/1190000039761445

For more programming-related knowledge, please visit: Programming Teaching! !

The above is the detailed content of Detailed explanation of the difference between value passing and reference passing in JS. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js Streams with TypeScriptNode.js Streams with TypeScriptApr 30, 2025 am 08:22 AM

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.