借鉴方法
在本章前面我提到,当你想忽略原型的属性时,对象的hasOwnProperty
可以用作in
运算符的更强大的替代方法。 但是如果你的映射需要包含hasOwnProperty
这个词呢? 你将无法再调用该方法,因为对象的属性隐藏了方法值。
你能想到一种方法,对拥有自己的同名属性的对象,调用hasOwnProperty
吗?
let map = {one: true, two: true, hasOwnProperty: true};
// Fix this call
console.log(map.hasOwnProperty("one"));
// → true