JavaScript basics using parseint () to convert integers (005)

Source: Internet
Author: User

parseint () can parse an integer value in a string format, such as "32 days", to be resolved to a number of integers. The function also accepts the second argument, specifying the integer's binary (which, of course, should be in general decimal). A good habit is to always use this second parameter to prevent some unexpected bugs from appearing.

var month = "n", Year    = "The",    decimal = 10;month = parseint (month, decimal); year = parseint (year, decimal);

If the above code does not add the second argument to decimal, the string "09" is considered to be a 8-digit number, and 9 cannot appear in the 8 binary, the program will go wrong.
If the integer conversion always targets 10 data, you can also use the "+" operator or number () to complete the conversion:

+ ""/result is 8Number ("08")//8

JavaScript basics using parseint () to convert integers (005)

Related Article

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.