Reflect.has()
Reflect.has()
静态方法类似于 in
操作符,但它是一个函数。
试试
语法
js
Reflect.has(target, propertyKey)
参数
返回值
一个 Boolean
,指示目标
是否具有该属性。
异常
类型错误
-
如果
目标
不是对象,则抛出。
描述
Reflect.has()
提供了检查对象中是否存在属性的反射语义。也就是说,Reflect.has(target, propertyKey)
在语义上等同于
js
propertyKey in target;
Reflect.has()
调用目标
的[[HasProperty]]
对象内部方法。
示例
使用 Reflect.has()
js
Reflect.has({ x: 0 }, "x"); // true
Reflect.has({ x: 0 }, "y"); // false
// returns true for properties in the prototype chain
Reflect.has({ x: 0 }, "toString");
// Proxy with .has() handler method
obj = new Proxy(
{},
{
has(t, k) {
return k.startsWith("door");
},
},
);
Reflect.has(obj, "doorbell"); // true
Reflect.has(obj, "dormitory"); // false
Reflect.has
返回true
,表示任何继承的属性,就像 in
操作符一样
js
const a = { foo: 123 };
const b = { __proto__: a };
const c = { __proto__: b };
// The prototype chain is: c -> b -> a
Reflect.has(c, "foo"); // true
规范
规范 |
---|
ECMAScript 语言规范 # sec-reflect.has |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。