Null and undefined in JavaScript

Source: Internet
Author: User

1. Undefined and null are automatically converted to false in the Boolean unary count.

2. Null = = Undefined;//true

Null = = Undefined;//false


2. typeof Null;//object

typeof undefined;//undefined

3. Number (null);//0

Number (undefined);//nan

4. Current Usage:
Null means "no object", meaning there should be no value here. Typical usage:
(1) As a function parameter, the parameter of the function is not an object.
(2) As the end point of the prototype chain of the object.
Object.getprototypeof (object.prototype);//null


Undefined means "missing value". Typical usage:
(1) The variable is declared and has not been assigned, and the variable is equal to undefined.
var data;
data;//undefined
(2) When the function is called, the argument that should be supplied is not provided, and the parameter is equal to undefined.
function f (data) {Console.log (data);}
f ();//undefined
(3) The object does not have an assigned property, and the value of this property is undefined.
var obj = new Object ();
obj.p;//undefined
(4) When the function does not return a value, undefined is returned by default.
var res = (function () {}) ();//undefined

Null and undefined in JavaScript

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.