一、hasOwnProperty 是什么
hasOwnProperty()
返回 true
/ false
,判断对象自身属性中是否具有指定的属性。和 in
的区别是 in
会判断原型链上继承下来的属性。
"hasOwnProperty 会失效的场景"继续阅读
hasOwnProperty()
返回 true
/ false
,判断对象自身属性中是否具有指定的属性。和 in
的区别是 in
会判断原型链上继承下来的属性。
"hasOwnProperty 会失效的场景"继续阅读