xxxxxxxxxx
var person={"name":"Billy","age":20}
person.hasOwnProperty("name"); // true
person.hasOwnProperty("sex"); // false
xxxxxxxxxx
"key" in obj // true, regardless of the actual value
If you want to check if a key doesn't exist, remember to use parenthesis:
!("key" in obj) // true if "key" doesn't exist in object
!"key" in obj // ERROR! Equivalent to "false in obj"
Or, if you want to particularly test for properties of the object instance (and not inherited properties), use hasOwnProperty:
obj.hasOwnProperty("key") // true
xxxxxxxxxx
const person = {
firstName: 'John',
lastName: 'Doe',
age: 30,
city: 'New Work'
};
const keyToFind = 'age';
if (person.hasOwnProperty(keyToFind)) {
console.log('Key exists in the object!');
} else {
console.log('Key does not exist.');
}
// Output: "Key exists in the object!"
xxxxxxxxxx
const person = {
firstName: 'John',
lastName: 'Doe',
age: 30,
city: 'New Work'
};
const keyToFind = 'city';
if (keyToFind in person) {
console.log('Key exists in the object!');
} else {
console.log('Key does not exist.');
}
// Output: "Key exists in the object!"
xxxxxxxxxx
!("key" in obj) // true if "key" doesn't exist in object
!"key" in obj // ERROR! Equivalent to "false in obj"
xxxxxxxxxx
const myObject = {
key1: 'value1',
key2: 'value2',
key3: 'value3'
};
// Check if a key exists in the object
const keyExists = 'key2' in myObject;
console.log(keyExists); // Output: true
xxxxxxxxxx
5003
Checking for undefined-ness is not an accurate way of testing whether a key exists. What if the key exists but the value is actually undefined?
var obj = { key: undefined };
console.log(obj["key"] !== undefined); // false, but the key exists!
xxxxxxxxxx
var obj = { key: undefined };
obj["key"] !== undefined // false, but the key exists!