This article introduces the parseInt function in Js. Friends in need can refer to
from very popular examples Speaking of parseInt("09")==0.
parseInt(number,type) If this function is not followed by the second parameter to represent the base, the default is decimal.
For example, parseInt("010",10) is the decimal result: 10,
parseInt("010",2) is the binary result: 2,
parseInt("010" ,8) is the result of octal system: 8,
parseInt("010",16) is the result of binary system: 16.
Let me talk about the following: when the base unit is not specified, the default is decimal, but: if the Number inside starts with 0, it is considered to be octal, and if it starts with 0x, it is considered to be octal. I think it's hexadecimal.
parseInt("10")==>parseInt("010",10)===>10parseInt("010")==>parseInt("010",8)==>8parseInt( "0x10")==>parseInt("010",16)==>16.
It went very smoothly here.
Many things are not as smooth as expected, for example, if Number is not us How do you explain the normal numbers given? After checking some information, this is what it says:
parseInt(Number) If the middle Number encounters something that is not a number (0-9), the parsing will be interrupted, and only the value before it is not a number will be used for calculation: such as parseInt ("100x"), which is equivalent to parseInt("100")===》parseInt("100",10)==>100, and parseInt("0100x")===>parseInt("0100 ")===>parseInt("100",8)===>64.
One thing we seem to have ignored here is that there is an x in the hexadecimal system. It is not a number. Is it an encounter? Even x was ignored. After trying it, I found that under this special treatment,
For example, parseInt("0x10")===>parseInt("10",16)===>16 is consistent with the top result, but it is consistent with the top result. What I just said is that if characters are not automatically parsed, it should be understood as parseInt("0"), which is contrary to the rules.
It should be noted here that the Number in parseInt is like this. If the first one is not 0 and is not a character, it is considered to be decimal. Everything will be executed as usual, and it will stop when it encounters a letter. And if the first one is 0, you need to pay attention to the following one. If it is Just follow the rules we mentioned above to stop parsing when encountering non-digits. For example, parseInt("0xt")==>parseInt("0x")==>parseInt("",16) is NaN.
To summarize, the value in parseInt(Number): If the first digit is not 0, it will stop parsing when it encounters a letter, and parse the value in front of the letter as a decimal. If the first one is The value of a letter is empty, and the empty value becomes NaN,
For example: parseInt("a")==>parseInt("",10)==>NaN.parseInt("10a")==>parseInt ("10")==>parseInt("10",10)==>10;
If the first digit is 0 and the second digit is not x, it will stop parsing when it encounters a letter as above. And parse the value in front of the letter as octal, for example: parseInt("0a")==>parseInt("0")==>parseInt("0",10)==>0.PS : This is a bit special, because 0a is parsed into 0, and it does not have the structure to be regarded as an octal system. The following one is obvious.
parseInt("010a")==>parseInt("010")==>parseInt("10",8)==>8;If the first digit is 0 and the second digit is x Then, as above, it stops parsing when it encounters letters, and parses the value in front of the letters as hexadecimal, for example: parseInt("0xt")==>parseInt("",16)==>NaN .parseInt("0x12t")==>parseInt("12",16)==>18.
The above is the detailed content of A brief introduction to the parseInt function in js. 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执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver Mac version
Visual web development tools
