Home > Web Front-end > JS Tutorial > body text

How to convert numeric value to string using toString in JavaScript

不言
Release: 2019-01-19 16:32:08
Original
4232 people have browsed it

The toString method is "to String (string)", which is the method used when "converting to a string". In How to convert numeric value to string using toString in JavaScript, all values ​​are divided into data types such as numeric values, strings, and arrays. toString method is used when converting a non-string to a string.

How to convert numeric value to string using toString in JavaScript

How to use toString method?

How to get the number of digits in a number

If you want to get a big number, such as 100000000000000000000, you can get it if you use length Numerical, but length is a method used by strings and cannot be used by numbers.

var num = 10000000000000;
console.log(num.length);
Copy after login

The execution result is as follows:

undefiened
Copy after login

Therefore, the number of characters can be obtained by converting the numerical value to a string.

Let’s use toString()

var num = 10000000000000; 
var digits = num.toString().length; 
console.log(digits + "位数");
Copy after login

The execution result is:

14位数
Copy after login

In this way, we use the toString method to convert non-strings (such as numbers) into characters string.

When converting a numeric value to a string, you can also perform base conversion at the same time.

The code is as follows

var num = 10;
var bin_converted = num.toString(2);
var hex_converted = num.toString(16);
 
console.log("10的二进制是:" + bin_converted);
console.log("10的十六进制是:" + hex_converted);
Copy after login

The execution results are as follows:

10的二进制是:1010
10的十六进制是:a
Copy after login

In addition to numbers, dates (Date), arrays (Array), objects = associative arrays ( Object), etc. can also be converted to strings.

How to convert date to string?

You can also use the toString method to convert the date (Date object) into a string

var date = new Date(); // 今天的日期
console.log("今天:" + date.toString());
console.log("今天:" + date.toISOString());
Copy after login

The execution results are as follows:

今天:Sat Jan 19 2019 15:27:22 GMT+0800 (中国标准时间)
今天:2019-01-19T07:27:22.656Z
Copy after login

Note: The toISOString method is used to output in ISO standard format

How to convert an array (Array) to a string?

Array can also be converted to string and output.

var array = ["苹果","橙子","香蕉","葡萄","柚子"]
console.log("喜欢的水果是:" + array.toString());
Copy after login

The execution result is as follows:

喜欢的水果是:苹果,橙子,香蕉,葡萄,柚子
Copy after login

Note: Since it is a string output by the toString method, it can be added together with other strings.

This article ends here. For more exciting content, you can pay attention to the relevant column tutorials on the php Chinese website! ! !

The above is the detailed content of How to convert numeric value to string using toString in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!