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

Analysis of toString() method of Number object in javascript_javascript skills

WBOY
Release: 2016-05-16 16:25:16
Original
1301 people have browsed it

The examples in this article describe the definition and usage of the toString() method. Share it with everyone for your reference. The specific analysis is as follows:

This method can convert the Number object into a string and return the string.

The grammatical structure is as follows:

Copy code The code is as follows:
NumberObject.toString(radix)

Parameter list:

参数 描述
radix 可选。规定表示数字的基数,使2 ~ 36 之间的整数。若省略该参数,则使用基数10。但是要注意,如果该参数是10以外的其他值,则ECMAScript标准允许实现返回任意值。

The example code is as follows:

Copy code The code is as follows:
var a=new Number(3);
console.log(a.toString());

Output result: 3.

I hope this article will be helpful to everyone’s JavaScript programming design.

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!