The ToString () method in JS

Source: Internet
Author: User

Today read the JS learning materials, see a ToString () method, in JS, all defined objects have the ToString () method.

The ToString () method of the number type is special, with both the default mode and the base mode.

Example of default mode:

var num1 = 10;

var num2 = 10.0;

Alert (num1.tostring ());//Output 10

Alert (num2.tostring ());//Output 10

No matter what notation you use to declare numbers, the default mode is only returned in decimal.

Example of a base pattern:

var num1 = 10;

Alert (num1.tostring (2));//Output 1010

Alert (num1.tostring (8));//Output 12

Alert (num1.tostring (16));//Output A

It is obvious that the base mode is to convert the numerical type into the corresponding binary.

Original: http://blog.sina.com.cn/s/blog_85c1dc100101bxgg.html

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.