Dla własnej nieruchomości:
var loan = { amount: 150 };
if(Object.prototype.hasOwnProperty.call(loan, "amount"))
{
//will execute
}
Uwaga: użycie Object.prototype.hasOwnProperty jest lepsze niż kredyt.hasOwnProperty (..), w przypadku gdy niestandardowy hasOwnProperty jest zdefiniowany w łańcuchu prototypów (co nie ma tu miejsca), jak
var foo = {
hasOwnProperty: function() {
return false;
},
bar: 'Here be dragons'
};
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty
Aby uwzględnić odziedziczone właściwości w wyszukiwaniu, użyj operatora in : (ale musisz umieścić obiekt po prawej stronie „in”, prymitywne wartości spowodują błąd, np. „Długość” w „home” spowoduje błąd, ale „długość” w nowym ciągu („home”) nie będzie)
const yoshi = { skulk: true };
const hattori = { sneak: true };
const kuma = { creep: true };
if ("skulk" in yoshi)
console.log("Yoshi can skulk");
if (!("sneak" in yoshi))
console.log("Yoshi cannot sneak");
if (!("creep" in yoshi))
console.log("Yoshi cannot creep");
Object.setPrototypeOf(yoshi, hattori);
if ("sneak" in yoshi)
console.log("Yoshi can now sneak");
if (!("creep" in hattori))
console.log("Hattori cannot creep");
Object.setPrototypeOf(hattori, kuma);
if ("creep" in hattori)
console.log("Hattori can now creep");
if ("creep" in yoshi)
console.log("Yoshi can also creep");
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/in
Uwaga: Można pokusić się o użycie akcesora typeof i [] jako następującego kodu, który nie zawsze działa ...
var loan = { amount: 150 };
loan.installment = undefined;
if("installment" in loan) // correct
{
// will execute
}
if(typeof loan["installment"] !== "undefined") // incorrect
{
// will not execute
}
hasOwnProperty
metoda zostanie nadpisana, możesz polegać naObject.prototype.hasOwnProperty.call(object, property)
”.