JS to determine if the field is empty IsNull

Source: Internet
Author: User

When the IF condition is null/undefined/0/nan/"" Expression in JS, all are interpreted as false, and all are also true.
Null-judging function
function IsNull (arg1)
{
return!arg1 && arg1!==0 &&typeof arg1!== "boolean"? True:false;
}


Alert (IsNull (null)); True
Alert (IsNull (")); True
Alert (IsNull ()); True
varaa={};
Alert (IsNull (AA.A)); True
Alert (isNull (0)); False
Alert (IsNull (' 0 ')); False
Alert (IsNull (true)); False
Alert (IsNull ("undefined")); False
Alert (isNull (undefined)); True
Alert (IsNull ([])); False
Alert (IsNull ({})); False

From: http://blog.sina.com.cn/s/blog_68ead6830101cx3u.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.