There are no pointers in JavaScript, and references in JavaScript work differently than we typically see in most other popular programming languages. In JavaScript, it is not possible to have a reference from one variable to another. Furthermore, only composite values (such as objects or arrays) can be assigned by reference.
The following categories will be used throughout the article:
1. Scalar – a single value or data unit (such as an integer, Boolean value, string)
2 , Composite - composed of multiple values (such as arrays, objects, collections)
3. Primitive - a direct value, not a reference to something containing a value.
JavaScript’s scalar types are primitives, unlike some other languages (such as Ruby) which have scalar reference types. Note that in JavaScript, scalar primitive values are immutable, while composite values are mutable.
Summary:
1. The type of value assigned to a variable determines whether the value stores a value or a reference.
2. When assigning values to variables, scalar primitive values (Number, String, Boolean, undefined, null, Symbol) are assigned by value, and composite values are assigned by reference.
3.References in JavaScript only point to the contained value, not to other variables or references.
4. In JavaScript, scalar primitive values are immutable and composite values are mutable.
Quick example of assignment by value
In the code snippet below, we are assigning a scalar primitive value (a number) to a variable, so Here it is assigned by value. First, the variable batman is initialized. When the variable superman is assigned the value stored in batman, a copy of the value is actually created and stored in the variable superman. When the variable superhero is modified, the variable batman is not affected because they point to different values.
var batman = 7; var superman = batman; //通过值来赋值 superman++; console.log(batman); //7 console.log(superman); //8
Quick example of assignment by reference
In the following code snippet, we assign a composite value (array) to a variable, so the assignment is by reference. The variables flash and quicksilver are references to the same value (also called a shared value). When a shared value is modified, the reference will point to the updated value.
var flash = [8,8,8]; var quicksilver = flash; //通过引用来赋值 quicksilver.push(0); console.log(flash); //[8,8,8,0] console.log(quicksilver); //[8,8,8,0]
How to create a new reference
When the composite value in the variable is reassigned, a new reference will be created. In JavaScript, unlike most other popular programming languages, references point to the value stored in the variable, not to other variables or references.
var firestorm = [3,6,3]; var atom = firestorm; //通过引用来赋值 console.log(firestorm); //[3,6,3] console.log(atom); //[3,6,3] atom = [9,0,9]; //通过值来赋值 (创建新的引用) console.log(firestorm); //[3,6,3] console.log(atom); //[9,0,9]
What happens when a reference is passed as a function parameter? Working
In the following code snippet, the variable magneto is a composite value (an array), so it is assigned as a reference to the variable x (the function parameter).
The Array.prototype.push method called in IIFE will change the value in the variable through JavaScript reference. However, the reassignment of variable x creates a new reference, and further modifications to variable x will not affect the reference to variable magneto.
var magneto = [8,4,8]; (function(x) { //IIFE x.push(99); console.log(x); //[8,4,8,99] x = [1,4,1]; //重新赋值变量 (创建一个新的引用) x.push(88); console.log(x); //[1,4,1,88] })(magneto); console.log(magneto); //[8,4,8,99]
How to change the original value in a compound variable passed as a function parameter via JavaScript reference
The solution here is to modify The existing composite value pointed to by the reference. In the code snippet below, the variable wolverine is a composite value (an array) and is called in the IIFE, and the variable x (the function parameter) is assigned a reference.
You can create an empty array by setting the value of the property Array.prototype.length to 0. Therefore, the variable wolverine is changed via JavaScript reference to the new value in variable x.
var wolverine = [8,7,8]; (function(x) { //IIFE x.length = 0; //创建空数组对象 x.push(1,4,7,2); console.log(x); //[1,4,7,2] })(wolverine); console.log(wolverine); //[1,4,7,2]
How to store a composite value by assignment by value
The solution here is to make a manual copy of the composite value and then Assign the copied value to the variable. Therefore, the reference to the assigned value does not point to the original value.
To create a (shallow) composite value copy (array object) it is recommended to call the Array.prototype.slice method without passing any parameters.
var cisco = [7,4,7]; var zoom = cisco.slice(); //创建浅复制 cisco.push(77,33); console.log(zoom); //[7,4,7] console.log(cisco); //[7,4,7,77,33]
How to store a scalar initialization by assignment by reference Value
The solution here is to include the scalar primitive value in a composite value (i.e. object or array) as its property value. Therefore, it can be assigned by reference. In the following code snippet, the scalar raw value in the variable speed is set as a property of the flash object. Therefore, when the IIFE is called, it is assigned to x (the function parameter) by reference.
var flash = { speed: 88 }; (function (x) { //IIFE x.speed = 55; })(flash); console.log(flash.speed); //55
The above is the detailed content of Detailed explanation of JavaScript reference assignment. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
