What's the best way of checking if an object property in JavaScript is undefined?
Sorry, I initially said variable rather than object property. I believe the same == undefined approach doesn't work there.
|
What's the best way of checking if an object property in JavaScript is undefined? Sorry, I initially said variable rather than object property. I believe the same
| ||||
|
feedback
|
|
Use:
| |||||
feedback
|
|
I believe there are a number of incorrect answers to this topic. Contrary to common belief "undefined" is NOT a keyword in javascript, and can in fact have a value assigned to it.
Additionally, The most robust way to perform this test is:
This will always return the correct result, and even handles the situation where myVar is not declared. | |||||||||
feedback
|
|
In JavaScript there is null and there is undefined. They have different meanings.
Marijn Haverbeke states, in his free, online book "Eloquent JavaScript" (emphasis mine):
So, I guess the best way to check if something was undefined would be:
Hope this helps! Edit: In response to your edit, object properties should work the same way.
| |||||||||||||||||||||
feedback
|
This worked for me while the others didn't. | |||||
feedback
|
|
I'm not sure where the origin of using
| |||||||||
feedback
|
|
It's better to use the strict equality operator:
x == undefined also checks whether x is null, while strict equality does not (if that matters).(source) Or you can simply do this:
Here you check if there's any value that can make the variable look false (undefined, null, 0, false, ...). Not a good method for integers ('0' is not false), but might do well for object properties. | |||||||||||||
feedback
|
|
Though that I'd throw in that its sometimes worth asking if checking for undefined is really what you want to do: I've just been refactoring a bunch of code that was using this kind of construct (incorrectly). There was a bunch of checks whether an object had a given property.
Which can be more clearly written without a check for undefined.
| |||||||
feedback
|
|
The solution is incorrect. In javascript,
will return true because they both are "casted" to a boolean and are false. The correct way would be to check
which is the identity operator... | |||||||
feedback
|
|
if you do:
It will fail when the var myvar does not exists because myvar is not defined, so the script is broken and the test has no effect. Because the window object has a global scope (default object) outside a function, a declaration will be 'attached' to the window object. for example:
the global var myvar is the same as window.myvar or window['myvar'] To avoid errors to test when a global variable exists, you better use:
The question if a var really exists doesn't matter, it's value is incorrect, that is the only thing that counts. Otherwise, it is silly to initialize variables with undefined, better use the value false to initialize. When you know that all variables that you declare are initialized with false, you can simply check it's type or rely on !window.myvar to check if it has a proper/valid value. So even when the variable is not defined then !window.myvar is the same for myvar=undefined or myvar=false or myvar=0. When you expect a specific type, test the type of the variable. To speed up testing a condition you better do:
When the first and simple condition is true, the interpreter skips next tests. It is always better to use the instance/object of the variable to check if it got a valid value. It is more stable, a better way of programming. Cheers! Kind regards, Erwin Haantjes | ||||
|
feedback
|
Returns false if variable is set, and true if is undefined. Then use:
| |||||||||
feedback
|
|
You can get array all undefined with path using following code.
jsFiddle link | |||
|
feedback
|
|
This doesn't look up through the prototype chain, however. | |||
|
feedback
|
|
These threw exceptions for me The following code will work for variables which are not created inside a function
But However using try and catch was the only solution which returned zero exceptions at all places. | ||||
|
feedback
|
|
Please try the following example it works for me and it is as per w3schools standard
| |||||||||||||||
feedback
|
You can also make it into a function, as shown here:
| |||||||||
feedback
|
|
I've tested with undefined but is not recognized on object as standard command (i probably wrong same case sensitive), as said Ricky undefined = null. I've tested with null and finally work:
I've used it to check(uncheck) unknown number of checkboxes without test all objects in the page. | ||||
|
feedback
|
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.
o.prop === undefinedis the way to go, ortypeof(o.prop) == 'undefined'if there is a risk somebody might define a variable by the nameundefined. There is a lot of confusion in the answers. Note thato.prop == undefinedwill givetrueifo.propis defined with the valuenull. – clacke Jul 30 '10 at 8:58typeof(o.prop) == 'undefined'is still true. To distinguish this case, you need to check'prop' in o. – Dave Feb 19 at 9:34