This article brings you a detailed introduction to JavaScript data types. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
I recently interviewed three developers, and none of them could explain clearly what the basic types of JS are. And they often mistakenly mention some C language data types, such as int, float, double and other data types.
No matter what language, proficiency in data types is the most fundamental knowledge point of this language
JS data types are divided into two categories, one is the basic type, They have
- Number
- String
- Boolean
- Undefined
- Null
- Symbol
There are only a few basic types of js. In addition, other types are objects.
Number type
There are no integer, float, or double type values in JS. All values are called Number type.
JS uses IEEE754 format to represent integers and floating point numbers. Generally speaking, integers occupy 32 bits, while floating point numbers occupy 64 bits. Because floating point numbers occupy twice the memory space of integers, js will appropriately convert floating point numbers into integers for storage.
4.0 === 4 // true
Numeric types all have a size range
Number.MAX_VALUE // 1.7976931348623157e+308 Number.MIN_VALUE // 5e-324 Number.MAX_SAFE_INTEGER // 9007199254740991 Number.MIN_SAFE_INTEGER // -9007199254740991
Floating point numbers generally have inaccurate calculation results. This is not a JS problem, this problem exists in all languages.
Calculation0.1 0.2 === 0.3
This result is always false.
To compare whether floating point numbers are equal, you can use Number.EPSILON
. Number.EPSILON is a very small value. If the two floating point numbers are smaller than Number.EPSILON, you can are considered equal.
Math.abs(0.1 + 0.2 - 0.3) <p>There are three special brothers in the Number type</p><ol> <li>Infinity When the value exceeds the maximum value of the Number type, it will become positive infinity</li> <li>-Infinity When the numerical type is less than the minimum value of the Number type, it will become negative infinity </li> <li>NaN NaN means that it is not a numerical value. For example, if a certain value is divided by 0, an error will be reported in ordinary languages, but js will not. Instead, the value of the variable will become NaN. </li> </ol><p>Once the numerical type becomes these three brothers, it cannot participate in subsequent numerical operations. </p><p style="white-space: normal;">String type</p><p>Students who come from static languages will ask a question when they encounter a string: How many strings can you hold? </p><p>The string smiled silly and said: Since I was born, it has never been filled!</p><blockquote>ECMAScript 2016 (ed. 7) established a maximum length of 2^53 - 1 elements. Previously, no maximum length was specified. In Firefox, strings have a maximum length of 2<strong>30 - 2 (~1GB). In versions prior to Firefox 65, the maximum length was 2</strong>28 - 1 ( ~256MB). --MDN</blockquote><p style="white-space: normal;">Boolean</p><p>Boolean value is very simple, just two values: false and true. But many people can't fully answer which values will be converted to false. </p><p>Except for the following values that can be converted to false, all others are true. </p><pre class="brush:php;toolbar:false">false '' NaN undefined 0, -0, +0 null
undefined and null
undefined indicate that a variable is defined but has not been assigned a value. null means that the variable is not defined at all. In short, whether it is undefined or null, they are basically unusable values.
The null type has a special function. For example, there is an object with many attributes. If you want to mark this variable as ready for garbage collection, you can set its value to null.
The most familiar stranger: Object
I once thought that objects were the simplest in js, but in fact, I was too naive.
// 定义一个对象,so easy var boy = { name: 'wangduanduan' }rrree
Data attributes of the object
Data attributes | Default value | Description |
---|---|---|
configurable | true | Indicates whether this attribute can be deleted using delete |
enumerable | true | Indicates whether this attribute can be traversed through a for in loop |
writable | true | Indicates whether this attribute can be traversed Modified |
value | undefined | Indicates the data value of this attribute |
If When calling Object.defineProperty without specifying configurable, enumerable, or writable, their default values are all false.
Accessor attribute
The accessor attribute is get, and set allows you to do a layer of interception when reading or writing values.
var boy = {} Object.defineProperty(boy, 'name', { writable: false, value: 'wdd' }) boy.name = 'ddw' // 设置不会生效,boy.name的值还是wdd
Think about what would happen if you change _sex above to sex?
var man = { _sex: 1 } Object.defineProperty(man, 'sex', { set: function (v) { this._sex = v === '男' ? 1 : 0 }, get: function () { return this._sex === 1 ? "男" : "女" } }) nam.sex // 男
This article has ended here. For more exciting content, you can pay attention to the JavaScript Video Tutorial column on the PHP Chinese website!
The above is the detailed content of Introduction to JavaScript data types. 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

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version
Useful JavaScript development tools

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