A brief analysis of JS original value and reference value issues

A brief analysis of JS original value and reference value issues

Primitive values ​​-> primitive types

Number String Boolean undefined null

Simple data segments stored on the stack, that is, their values ​​are stored directly at the location where the variable is accessed

Dynamic language -> scripting language -> interpreted language -> weakly typed language

Static language -> compiled language -> strongly typed language

null empty value initialization component function destruction function placeholder

Reference Value

object array function date RegExp

If a value is of a reference type, its storage is allocated from the heap. Since the size of the reference value will change, it cannot be placed on the stack, otherwise it will slow down the variable search. Instead, the value placed in the variable's stack space is the address where the object is stored on the heap. The address size is fixed, so storing it on the stack has no negative impact on the variable's performance.
ex

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>D1</title>
</head>
<body>
    <script type="text/javascript">
        var arr1 = [1,2,3,4];
        var arr2 = arr1;
        //arr1.push(5); //At this time, arr2 is printed as 1, 2, 3, 4, 5
        arr1 = [1,2]; //Reassigning value will not affect arr2
        document.write(arr2);
    </script>
</body>
</html>

This is the end of this article about JS original value and reference value. For more relevant JS original value and reference value content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed examples of storing primitive values ​​and reference values ​​in JS
  • JavaScript data manipulation - A brief discussion of the nature of primitive and reference value manipulation
  • JavaScript detects primitive values, reference values, and attributes

<<:  Introduction to vim plugin installation under Linux system

>>:  How to change the color of the entire row (tr) when the mouse stops in HTML

Recommend

MySQL partitions existing tables in the data table

Table of contents How to operate Operation proces...

Learn Hyperlink A Tag

ask: I have styled the hyperlink using CSS, but i...

Detailed explanation of common commands in Docker repository

Log in docker login Complete the registration and...

Vue3+TypeScript encapsulates axios and implements request calls

No way, no way, it turns out that there are peopl...

Do not start CSS pseudo-class names with numbers

When newbies develop div+css, they need to name t...

Detailed explanation of 4 common data sources in Spark SQL

Generic load/write methods Manually specify optio...

Tips on making web pages for mobile phones

Considering that many people now use smartphones, ...

Detailed explanation of the basic functions and usage of MySQL foreign keys

This article uses examples to illustrate the basi...

Detailed explanation of the MySQL MVCC mechanism principle

Table of contents What is MVCC Mysql lock and tra...

How to open a page in an iframe

Solution: Just set the link's target attribute...

40 fonts recommended for famous website logos

Do you know what fonts are used in the logo desig...

MySQL solution for creating horizontal histogram

Preface Histogram is a basic statistical informat...

How to configure Nginx's anti-hotlinking

Experimental environment • A minimally installed ...

MySQL permissions and database design case study

Permissions and database design User Management U...