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.
|
2
|
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.
|
|||
|
|
|
|
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.
|
|||
|
|
|
|
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. |
||||
|
|
|
Use:
|
||
|
|
|
|
You can also make it into a function, as shown here:
|
||
|
|
|
|
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... |
||
|
|