Null and undifined for JavaScript

Source: Internet
Author: User

Null represents an object, or the value of a variable is null, undifined means that an object (variable) is declared, not initialized to him, or the object (variable) is not declared at all.

1, NULL is the JavaScript keyword undifined not.

2, typeof return string, there are six possible: "Number", "string", "Boolean", "Object", "function", "undefined"

typeof NULL returns the result as "object", indicating that null is an object. The return result of TypeOf undifined is "undifined".

3, null==undifined result is true,null===undifined result is false.

In addition, to determine whether an object exists, you can use TypeOf a!=undifined to judge. Returns true if the variable a exists.

Remember, you cannot judge by if (a), so you may get an error "uncaught referenceerror:a is not defined"

Null and undifined for JavaScript

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.