Home Web Front-end JS Tutorial Detailed explanation of special data types in JavaScript

Detailed explanation of special data types in JavaScript

Dec 18, 2017 am 09:33 AM
javascript js type

In JavaScript, there are 6 major data types, including string, number, boolean, undefined, null and object. The following is an introduction to the special data types in JavaScript through this article. Friends who need it can refer to it. I hope it can help everyone.

1. Special types in JS: NaN

NaN is Not a Number, not a number, so what exactly is NaN? For JS, integers and floating point numbers are collectively called the number type. In addition, the number type also has a very special value, namely NaN, which is used to indicate whether it is a state of the number type, rather than An exact value (so, NaN is not equal to itself).

So, under what circumstances do NaN values ​​generally appear?

Generally there are two situations:

(1) If there are operators such as minus sign (-), multiplication sign (*) or division sign (/) in an expression, JS The engine will try to convert the variables on both sides of the operator into number type (use Number(x) for conversion) before calculation. If the conversion fails, the expression will return NaN; the plus sign (+) operator will not convert the variables on both sides of it. The variable is converted to number type. This is because the execution order of JS expressions is from left to right according to the priority of the operator. If the variables on both sides of the plus sign (+) are of type number, the numerical comparison will be done. Addition operation, if one of the variables is a string, both sides will be added as strings, such as: 5+4+"6"="96"

(2) Directly use parseInt, parseFloat Or Number When converting a non-numeric value into a number, the expression returns NaN

"abc" - 3  // NaN
parseInt( "abc" ) // NaN
parseFloat( "abc" ) //NaN
Number( "abc" )  //NaN
Copy after login

For values ​​with numbers + characters, the conversion results will be different. :

Number( "123abc" ); //NaN
parseInt( "123abc" ); //123
parseInt( "123abc45" ); //123
parseFloat( "123.45abc" ); //123.45
Copy after login

This is because Number converts the entire value, not part of the value, and parseInt and parseFloat only convert the string before the first invalid character.

Therefore, when a string cannot be successfully converted by Number, parseInt, parseFloat, NaN is returned, indicating that the string cannot be recognized as a numeric type. This is an exception status and not an exact value. .

So NaN != NaN , because it is an exception status, not an exact value.

In addition, there is a function related to NaN, namely isNaN(). Its function is to check whether a string can be successfully converted by Number(), that is, to force the entire string to be converted.

isNaN( "123" )  //false 能转换
isNaN( "abc" )  //true 不能转换
isNaN( "123abc" )  //true 部分可转换,但整体不能转换
isNaN( "123.45abc" ) //true 部分可转换,但整体不能转换
Copy after login

2. There are two other special types in JS: undeinfed and null

undefined is one of the 6 data types in JavaScript This type has only one value, which is undefined. undefined means `undefined`, that is, when a variable is declared using var but no value is assigned, the value of the variable is undefined. There are two reasons for this:

(1) The access object does not exist Attribute or method

(2) The variable is declared but never assigned a value

var v1,obj = {};
console.log(v1); //undefined
console.log(obj. get ); //undefined
typeof v1; // "undefined"
typeof v2; // "undefined"
typeof obj. get ; // "undefine"
typeof obj ; // "object"
Copy after login

The difference from NaN is that undefined also represents the variable A state, but this state value is unique, that is, when a variable is declared but not assigned a value, its state is undefined, so the following expression is true:

var b;
b == undefined; //true
Copy after login

After understanding undefined, it will be much easier to understand null. The null type has only one value: null, which means that a variable does not contain valid data. Null here means empty value or empty object. To be more precise, a variable assigned to null does not store a valid value, string, Boolean, array or object, etc. It can be solved by assigning null to a variable. Clear the contents of the variable. There is only one reason for null: that is, explicitly assigning null to a variable.

var p = null ;
console.log(p); //null
typeof p ; // "object"
typeof null ; // "object"
Copy after login

Still compare with NaN, null is also a certain and unique state value. When a variable is assigned a value of null, then it is equal to null. , so the following expression is also true:

var obj = null ;
obj == null ; //true
Copy after login

In addition:

var  v1 = null;
var v2;
console.log(v1 + 1 ); // 1
console.log(v2 + 1 ); //NaN
var i = i +1;
var j = i+ 1;
console.log(i); // NaN
console.log(j ); //NaN
console.log(i == j ); //false
Copy after login

Related Recommended:

PHP self-study no00010 special data type null value

Detailed introduction to basic data types in JS development

About the difference between basic data types and reference data types in js

The above is the detailed content of Detailed explanation of special data types in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to create a video matrix account? What types of matrix accounts do it have? How to create a video matrix account? What types of matrix accounts do it have? Mar 21, 2024 pm 04:57 PM

With the popularity of short video platforms, video matrix account marketing has become an emerging marketing method. By creating and managing multiple accounts on different platforms, businesses and individuals can achieve goals such as brand promotion, fan growth, and product sales. This article will discuss how to effectively use video matrix accounts and introduce different types of video matrix accounts. 1. How to create a video matrix account? To make a good video matrix account, you need to follow the following steps: First, you must clarify what the goal of your video matrix account is, whether it is for brand communication, fan growth or product sales. Having clear goals helps develop strategies accordingly. 2. Choose a platform: Choose an appropriate short video platform based on your target audience. The current mainstream short video platforms include Douyin, Kuaishou, Huoshan Video, etc.

The relationship between js and vue The relationship between js and vue Mar 11, 2024 pm 05:21 PM

The relationship between js and vue: 1. JS as the cornerstone of Web development; 2. The rise of Vue.js as a front-end framework; 3. The complementary relationship between JS and Vue; 4. The practical application of JS and Vue.

How to get HTTP status code in JavaScript the easy way How to get HTTP status code in JavaScript the easy way Jan 05, 2024 pm 01:37 PM

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

What is the type of return value of Golang function? What is the type of return value of Golang function? Apr 13, 2024 pm 05:42 PM

Go functions can return multiple values ​​of different types. The return value type is specified in the function signature and returned through the return statement. For example, a function can return an integer and a string: funcgetDetails()(int,string). In practice, a function that calculates the area of ​​a circle can return the area and an optional error: funccircleArea(radiusfloat64)(float64,error). Note: If the function signature does not specify a type, a null value is returned; it is recommended to use a return statement with an explicit type declaration to improve readability.

The AI ​​era of JS is here! The AI ​​era of JS is here! Apr 08, 2024 am 09:10 AM

Introduction to JS-Torch JS-Torch is a deep learning JavaScript library whose syntax is very similar to PyTorch. It contains a fully functional tensor object (can be used with tracked gradients), deep learning layers and functions, and an automatic differentiation engine. JS-Torch is suitable for deep learning research in JavaScript and provides many convenient tools and functions to accelerate deep learning development. Image PyTorch is an open source deep learning framework developed and maintained by Meta's research team. It provides a rich set of tools and libraries for building and training neural network models. PyTorch is designed to be simple, flexible and easy to use, and its dynamic computation graph features make

See all articles