How to convert a string into a number in JavaScript

How to convert a string into a number in JavaScript

The main methods are: 1. parseInt() ; 2. Number() ; 3. parseFloat() ;

Let's introduce them one by one:

1.parseInt(string, radix)

  • Parses a string and returns a decimal integer in the specified radix or NaN.
  • The first argument is the value to be parsed. If the argument is not a number, it is converted to a number;
  • The second parameter specifies the base of the parsed value.
  • If the first character passed in cannot be converted to a number, parseInt returns NaN.

Here is a compatibility issue:

If radix is undefined , 0 , or unspecified, JavaScript assumes the following:

  • If the input string begins with "0x" or "0x" (a 0 followed by a lowercase or uppercase X), radix is ​​assumed to be 16 and the rest of the string is parsed as a hexadecimal number.
  • If the input string begins with "0" (0), radix is ​​assumed to be 8 (octal) or 10 (decimal). The exact radix chosen is implementation dependent. ECMAScript 5 clarified that 10 (decimal) should be used, but not all browsers support this yet. Therefore, when using parseInt , be sure to specify a radix.
  • If the input string begins with any other value, radix is ​​10 (decimal).

2. Number()

Function converts the value of an object to a number

  • Number() function converts the value of an object to a number.
  • When a string is passed to Number() conversion function, it will try to convert it to an integer or floating point number directly. This method can only convert based on decimal. If non-numeric characters appear in the string, NaN will be returned.

3.parseFloat()

  • The given value is parsed as a floating point number or integer. If it cannot be converted to a number, NaN is returned.
  • parseFloat is a global function and does not belong to any object.

All can be used directly:

function circumference(r) {
  return parseFloat(r) * 2.0
}
 
console.log(circumference(3));
// Output: 6

Finally, there is a more powerful operation:

數字字符串前直接寫“+”直接轉換

This is the end of this article about how to convert JavaScript strings to numbers. For more relevant JavaScript string conversion to numbers content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Javascript basics loop
  • How to use async and await correctly in JS loops
  • Four data type judgment methods in JS
  • About the difference between js typeof and instanceof in judging data types and their development and use
  • An example of elegant writing of judgment in JavaScript
  • parseInt parseFloat js string conversion number
  • JavaScript common statements loop, judgment, string to number

<<:  A brief discussion on DDL and DML in MySQL

>>:  Share the responsive frameworks commonly used by web design masters (summary)

Recommend

Nginx signal control

Introduction to Nginx Nginx is a high-performance...

How to completely uninstall node and npm on mac

npm uninstall sudo npm uninstall npm -g If you en...

Let's take a look at some powerful operators in JavaScript

Table of contents Preface 1. Null coalescing oper...

3D tunnel effect implemented by CSS3

The effect achievedImplementation Code html <d...

Summary of MySQL log related knowledge

Table of contents SQL execution order bin log Wha...

Installation tutorial of mysql 8.0.11 compressed version under win10

This article shares the installation tutorial of ...

In-depth understanding of the role of Vuex

Table of contents Overview How to share data betw...

How to upload and download files between Linux server and Windows system

Background: Linux server file upload and download...

How to use ElementUI pagination component Pagination in Vue

The use of ElementUI paging component Pagination ...

Using react-beautiful-dnd to implement drag and drop between lists

Table of contents Why choose react-beautiful-dnd ...

How to introduce pictures more elegantly in Vue pages

Table of contents Error demonstration By computed...

Usage and best practice guide for watch in Vue3

Table of contents Preface🌟 1. API Introduction 2....

MySQL 8.0.16 installation and configuration tutorial under CentOS7

Uninstall the old version of MySQL (skip this ste...