借鉴方法
在本章前面我提到,当你想忽略原型的属性时,对象的hasOwnProperty
可以用作in
运算符的更强大的替代方法。 但是如果你的映射需要包含hasOwnProperty
这个词呢? 你将无法再调用该方法,因为对象的属性隐藏了方法值。
你能想到一种方法,对拥有自己的同名属性的对象,调用hasOwnProperty
吗?
let map = {one: true, two: true, hasOwnProperty: true};
// Fix this call
console.log(map.hasOwnProperty("one"));
// → true
当前内容版权归 wizardforcel 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 wizardforcel .