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 的浏览器中加载。

另请参见