Why is null considered an object in javascript?
Is checking
if ( object == null )
do something
the same as
if ( !object )
do something
And also
What is the difference between null and undefined?
|
Why is null considered an object in javascript? Is checking
the same as
And also What is the difference between null and undefined? |
|||||
|
You: What is
You: What is In short; One thing to remember is that
You: What is
You: What is |
|||||||||||||||||||||
|
|
The difference can be summarized into this snippet:
checking
the latter equals to since so if your object is not null but false or 0 or "" the check will pass because
|
|||||||||
|
|
The difference between
Examining a variable:
As a general rule, you should always use === and never == in JavaScript (== performs all kinds of conversions that can produce unexpected results). The check
A common way of checking whether a variable has a value is to convert it to boolean and see whether it is
Drawback of this approach: All of the following values evaluate to
You can test the conversion to boolean by using
|
|||||
|
A property when it has no definition, is undefined. null is an object. It's type is null. null is a special value meaning "no value. undefined is not an object, it's type is undefined. You can declare a variable, set it to null, and the behavior is identical except that you'll see "null" printed out versus "undefined". You can even compare a variable that is undefined to null or vice versa, and the condition will be true:
Refer to JavaScript Difference between null and undefined for more detail. and with your new edit *yes*
when testing if object is false, they both only meet the condition when testing if false, but not when true Check here: Javascript gotcha |
|||||||||||||||||
|
Javascript design error they can't fix now. Should have been type null not type object, or not have it at all. Necessitates an extra check (sometimes forgotten) when detecting real objects. Source of bugs.
The two checks are always both false except for:- object is undefined or null: both true. object is primitive, and 0, If object is not primitive but a real Object like So if 'object' is interpreted to mean real Object then both checks are always the same. If primitives are allowed then the checks are different for 0, In cases like
In Javascript, one difference is that null is type object and undefined is type undefined. In Javascript, In Javascript, In reality, null and undefined are identical, since they both represent non-existence. So do 0, and 'false', 'true', and '!' are another bag of worms that could be simplified, e.g. A declared People are going round and round in circles trying to figure out all these various types of nothing, but it's all just the same thing in complicated different clothes. The reality is
and maybe all should throw exceptions. |
|||||||||||
|
x is defined as null y is not defined; // because I did not define it
null is evaluated as false |
|||
|
|
|
null and undefined are both false for value equality (null==undefined): they both collapse to boolean false. They are not the same object (null!==undefined). undefined is a property of the global object ("window" in browsers), but is a primitive type and not an object itself. It's the default value for uninitialized variables and functions ending without a return statement. null is an instance of Object. null is used for DOM methods that return collection objects to indicate an empty result, which provides a false value without indicating an error. |
|||
|
|
|
One way to make sense of null and undefined is to understand where each occurs. Expect a null return value in the following situations:
All other cases of non-existence are denoted by undefined (as noted by @Axel). Each of the following prints "undefined":
Of course if you decide to write var unitialised = null; or return null from a method yourself then you have null occurring in other situations. But that should be pretty obvious. A third case is when you want to access a variable but you don't even know if it has been declared. For that case use typeof to avoid a reference error:
In summary check for null when you are manipulating the DOM, dealing with Ajax, or using certain ECMAScript 5 features. For all other cases it is safe to check for undefined with strict equality:
|
||||
|
|
|
Some precisions, null and undefined ARE two different values. One representing the absence of value for a name and the other representing the absence of a name. Douglas, if you're out there, correct me if I'm wrong! What happens in an if goes as follow for The expression in the parentheses o is evaluated, then the if kicks in type-cohersing the value of the expression in the parentheses - in our case o. Falsy ( that will get cohersed to false ) values in javascript are: '', null, undefined, 0, false. |
|||
|
|
|
null is an object. It's type is null. undefined is not an object, it's type is undefined. |
|||||||||||||
|
|
To add to the answer of: what is the differrence between
|
|||
|
|
|
Comparison of many different null checks in Javascript: http://jsfiddle.net/aaronhoffman/DdRHB/5/
http://aaron-hoffman.blogspot.com/2013/04/javascript-null-checking-undefined-and.html
|
||||
|
|
|
For example window.someWeirdProperty is undefined, so "window.someWeirdProperty === null" evaluates to false while "window.someWeirdProperty === undefined" evaluates to true. Moreover checkif |
|||||
|
|
you can also, check an object for null by look at it's length:
|
|||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.