A simple way for javaScript to judge whether a string is a number _javascript tips

Source: Internet
Author: User
Copy Code code as follows:

parseint ("Hello");//return NAN
parseint ("//return"); 110

So the simple way to judge whether a string is a number is to take advantage of isNaN (), and if true, the string is not a number, otherwise it is a number
Copy Code code as follows:

isNaN (parseint ("Hello"));//true;
isNaN ("parseint");//false;

Note: The following methods cannot be used to determine:
Copy Code code as follows:

parseint ("Hello", ten) ==nan;//return false
parseint ("==nan;//return") false

Because Nan and itself do not want to wait, this is more special, the way to Judge Nan is to use isNaN ();
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.