So:
x = {'key': 1};
if x.hasOwnProperty('key') {
//do this
}
Is that the best way to do that?
|
6
|
So:
Is that the best way to do that?
|
||
|
|
|
|
I'm really confused by the answers that have been given - most of them are just outright incorrect. Of course you can have object properties that have undefined, null, or false values. So simply reducing the property check to It depends on what you're looking for. If you want to know if an object physically contains a property (and it is not coming from somewhere up on the prototype chain) then If what you're looking for is if an object has a property on it that is iterable (when you iterate over the properties of the object, it will appear) then doing: Since using
The above is a working, cross-browser, solution to |
||||||||||||||
|
|
|
I generally just do the quick and dirty
as I normally don't need to check if the property is from the .prototype or the object itself. I also like existence checks for all kinds of things like
|
||
|
|
|
|
Let's cut through some confusion here. First let's simplify by assuming hasOwnProperty already exists, this is true of the vast majority of current browsers in use. hasOwnProperty returns true if the attribute name that is passed to it has been added to the object. It is entirely independant of the actual value assigned to it which may be exactly Hence:-
However:-
The problem is what happens when an object in the prototype chain has an attribute with the value of undefined? Bottom line is there is no cross browser way (since IE doesn't expose __prototype__) to determine that a specific identifier has not been attached to an object or anything in its prototype chain. |
||
|
|
|
|
@[enobrev],
@[sheats],
bear in mind that A more robust method is therefore the following:
On the flip side, this method is much more verbose and also slower. :-/ |
||
|
|
|
if (typeof x.key != "undefined"){ } Because if (x.key) fails if x.key resolves to false (eg x.key = ""). |
||
|
|
|
|
OK, looks like I had the right answer unless if you don't want inherited properties:
Here are some other options to include inherited properties:
|
|||
|
|
|
Yes, that is a good way to check, but keep in mind that hasOwnProperty does not check the prototype chain. |
||
|
|
|
Armin Ronacher seems to have already beat me to it, but:
A safer, but slower solution, as pointed out by Konrad Rudolph and Armin Ronacher would be:
|
|||
|
|
|
|
Yes it is :) I think you can also do But that tests for own properties. If you want to check if it has an property that may also be inhered you can use |
||
|
|