Preface This should be a very basic JavaScript knowledge point, but I guess many friends just briefly mentioned it and don't know anything about it during the interview. Here, combined with my previous notes, I will briefly introduce the relevant knowledge of primitive values and reference values. Let’s get started. ECMAScript stipulates that variables can contain two data types, either primitive values or reference values. Primitive values are the simplest data structures, while reference values are objects composed of multiple values. There are six primitive values in total: Undefined, Null, Boolean, Number, String, and Symbol. Operating the primitive value means operating the actual value in the storage variable. The reference value is an object stored in the memory. Since JavaScript cannot directly access the memory location, it cannot directly operate on the memory space where the object is located. When you operate on an object, you are actually operating on the reference of the object, not the object itself. What are dynamic properties? Dynamic properties mean that after a reference value is created, its properties and methods can be dynamically added, modified, and deleted. Example: let obj = new Object(); obj.name = "Sam"; console.log(obj.name); // "Sam" Explanation: First, a reference value object is created and stored in the variable obj. Second, a name attribute is assigned to obj with the value "Sam". Unless this property is modified/deleted, you can print or access this property directly. Primitive values cannot have attributes, although no error is reported when attribute operations are performed on them. Example: let me = "Sam"; me.sex = "male"; console.log(me.sex); // undefined Here, literal initialization is used, so even if the sex attribute is assigned to me, it is useless and the attribute cannot be accessed. let me = new String("Sam"); me.sex = "male"; console.log(me.sex); // "male" Copying of values Primitive values and reference values also differ when they are copied through variables. Primitive values are copied to a new variable, while reference values actually copy the pointer to the value. Example: let name = "Sam"; let myName = name; console.log(myName); // "Sam" When myName is initialized to name, "Sam" will also be copied to myName, which is independent of name and does not interfere with each other. It can be understood that myName is a copy of name. The copying of the reference value actually copies a pointer pointing to the object in the heap memory. The attribute operation on the copied variable is actually the operation on the copied object. The two variables actually refer to the same object. Example: let me = new Object(); let you = me; me.name = "Sam"; console.log(you.name); // "Sam" Determine value type We often use typeof to determine the type of a variable, which is useful for determining the type of primitive values, but it is not very useful for determining reference values, because for reference values and null, typeof returns object. Usually, we need to know exactly what type of object this is, so we have the instanceof operator. The syntax is: result = variable instanceof constructor instanceof returns a Boolean value. Example: console.log(person instanceof Object); // Is the variable person an Object? console.log(colors instanceof Array); // Is the variable colors an Array? console.log(pattern instanceof RegExp); // Is variable pattern a RegExp? If you use instanceof on a primitive value, it will always return false because primitive values are not objects. SummarizeThis is the end of this article about original values and reference values in ECMAScript. For more information about original values and reference values in ECMAScript, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Linux unlink function and how to delete files
>>: Detailed explanation of MySQL database binlog cleanup command
Method 1: Modify the configuration file (need to ...
Preface For tree-structured data in the database,...
The author recently encountered a performance bot...
Table of contents 1. v-text (v-instruction name =...
There are three ways to interconnect and communic...
Although head and DTD will not be displayed on th...
Today I saw a friend asking a question in the Q&a...
Copy code The code is as follows: <!DOCTYPE ht...
Flappy Bird is a very simple little game that eve...
This article mainly introduces the implementation...
1. Apache server installation and configuration y...
The complete syntax of the SELECT statement is: (...
Table of contents 1. The elephant that can’t fit ...
You need to apply CSS to div or span at the same t...
Recently, an error occurred while starting MySQL....