Đối với tài sản riêng:
var loan = { amount: 150 };
if(Object.prototype.hasOwnProperty.call(loan, "amount"))
{
//will execute
}
Lưu ý: sử dụng Object.prototype.hasOwnProperty tốt hơn loan.hasOwnProperty (..), trong trường hợp hasOwnProperty tùy chỉnh được xác định trong chuỗi nguyên mẫu (không phải là trường hợp ở đây), như
var foo = {
hasOwnProperty: function() {
return false;
},
bar: 'Here be dragons'
};
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty
Để bao gồm các thuộc tính được kế thừa trong tìm kiếm, hãy sử dụng toán tử trong : (nhưng bạn phải đặt một đối tượng ở phía bên phải của 'in', các giá trị nguyên thủy sẽ đưa ra lỗi, ví dụ: 'length' trong 'home' sẽ ném lỗi, nhưng 'length' trong Chuỗi mới ('nhà') sẽ không)
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
Lưu ý: Người ta có thể muốn sử dụng trình truy cập thuộc tính typeof và [] làm mã sau không hoạt động luôn ...
var loan = { amount: 150 };
loan.installment = undefined;
if("installment" in loan) // correct
{
// will execute
}
if(typeof loan["installment"] !== "undefined") // incorrect
{
// will not execute
}
hasOwnProperty
phương pháp được ghi đè, bạn có thể dựa vàoObject.prototype.hasOwnProperty.call(object, property)
."