Null and undefined parsing in JavaScript_javascript tips
In JavaScript development, I was asked: What is the difference between null and undefined?
It’s difficult to answer at the moment, especially undefined, because it involves the implementation principle of undefined. So, after thinking about it carefully, I wrote this article and asked you all for help.
As we all know: null == undefined
But: null !== undefined
So what is the difference between the two?
Please listen to my eloquent talk...
null
This is an object, but empty. Because it is an object, typeof null returns 'object' .
null is a JavaScript reserved keyword.
Whennull participates in numerical operations, its value will be automatically converted to 0. Therefore, the following expression will obtain the correct value after calculation:
Expression: 123 null Result value: 123
Expression: 123 * null Result value: 0
undefined
undefined is a special property of the global object (window), and its value is undefined. But typeof undefined returns 'undefined' .
Although undefined has a special meaning, it is indeed a property, and it is a property of the global object (window). Please look at the code below:
alert('undefined' in window); //Output: true
alert(undefined in window); //Output: true
var anObj = {};
alert('undefined' in anObj); //Output: false
It can be seen from this that undefined is a property of the window object, but it is not a property of the anObj object.
Note: Although undefined is an attribute with special meaning, it is not a reserved keyword in JavaScript.
When undefined participates in any numerical calculation, the result must be NaN.
By the way, NaN is another special property of the global object (window), and so is Infinity. None of these special attributes are reserved keywords for JavaScript!
Improve undefined performance
When we use the undefined value in the program, we actually use the undefined property of the window object.
Similarly, when we define a variable but do not assign it an initial value, for example:
var aValue;
At this time, JavaScript will set its initial value to a reference to the window.undefined property during so-called precompilation,
So, when we compare a variable or value with undefined, it is actually compared with the undefined property of the window object. During this comparison process, JavaScript will search for the property named 'undefined' of the window object, and then compare whether the reference pointers of the two operands are the same.
Since the window object has many attribute values, it will take time to search for the undefined attribute of the window object in each comparison with undefined. This can be a performance problem in functions that require frequent comparisons to undefined. Therefore, in this case, we can define a local undefined variable ourselves to speed up the comparison of undefined. For example:
function anyFunc()
{
var undefined; //Customized local undefined variable
if(x == undefined) //Reference comparison on scope
while(y != undefined) //Reference comparison on scope
};
Among them, when defining an undefined local variable, its initial value will be a reference to the window.undefined property value. The newly defined local undefined variable exists in the scope of the function. In subsequent comparison operations, there is no change in the way the JavaScript code is written, but the comparison speed is very fast. Because the number of variables in the scope will be far less than the properties of the window object, the speed of searching for variables will be greatly improved.
This is why many front-end JS frameworks often define a local undefined variable themselves!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

If you often encounter the error message "TypeError: Cannotreadproperty'$XXX'ofundefined" when developing with Vue.js, how should you deal with it? This article explains the causes of this error and how to fix it. The cause of the problem is that when using Vue.js, we often use this to call methods of Vue components, such as: exportdefault{data()

When writing code in PHP, we may encounter the error message "Notice: Undefinedproperty". This error means that we are accessing an undefined property, usually because the property has not been initialized in the code. So, how to solve this problem? Here are a few possible solutions: Initialize properties This is the simplest way to solve this problem. Explicitly initializing a property in code ensures that it is defined before use. For example: class

The difference between null and NULL in C language is: null is a macro definition in C language, usually used to represent a null pointer, which can be used to initialize pointer variables, or to determine whether the pointer is null in a conditional statement; NULL is a macro definition in C language A predefined constant in , usually used to represent a null value, used to represent a null pointer, null pointer array or null structure pointer.

In JavaScript, both undefined and null represent the concept of "nothing": 1. undefined represents an uninitialized variable or a non-existent property. When a variable is declared but no value is assigned to it, the value of the variable is undefined , when accessing properties that do not exist in the object, the returned value is also undefined; 2. null represents an empty object reference. In some cases, the object reference can be set to null to release the memory it occupies.

undefined represents a state in which a value or variable does not exist or is undefined. It can be used as a default value to determine whether a variable has been assigned a value, and can also be used to set default parameter values. Although undefined may have different meanings and usages in different programming languages, understanding the concept of undefined can help us better understand and write programs.

In the Go language, the path package is one of the important tools for processing file paths. The path.Join() function can combine multiple paths into a complete path. However, sometimes you will encounter the error message "undefined: path.Join", what should you do? Here are several common solutions: Check the import statement First, you need to confirm that you have imported the path package correctly. In Go language, when importing a package, you can

The difference between null and undefined is: 1. Semantic meaning; 2. Usage scenarios; 3. Comparison with other values; 4. Relationship with global variables; 5. Relationship with function parameters; 6. Nullability check; 7. Performance considerations; 8. Performance in JSON serialization; 9. Relationship with types. Detailed introduction: 1. Semantic meaning, null usually means knowing that this variable will not have any valid object value, while undefined usually means that the variable has not been assigned a value, or the object does not have this attribute; 2. Usage scenarios, etc.

Both null and undefined indicate a lack of value or an undefined state. Depending on the usage scenario, there are some guiding principles for choosing to use null or undefined: 1. When you need to clearly indicate that a variable is empty or invalid, you can use null; 2. When a variable has been declared but not yet assigned a value, it will be set to undefined by default; 3. When you need to check whether a variable is empty or undefined, use the strict equality operator "===" to determine whether the variable is null or undefined. .
