Reflect.has()

Reflect.has() 静态方法类似于 in 运算符,但作为一个函数。

¥The Reflect.has() static method is like the in operator, but as a function.

Try it

语法

¥Syntax

js
Reflect.has(target, propertyKey)

参数

¥Parameters

target

要在其中查找属性的目标对象。

propertyKey

要检查的属性的名称。

返回值

¥Return value

Boolean 指示 target 是否具有该属性。

¥A Boolean indicating whether or not the target has the property.

例外情况

¥Exceptions

TypeError

如果 target 不是对象,则抛出该异常。

描述

¥Description

Reflect.has() 提供检查属性是否在对象中的反射语义。也就是说,Reflect.has(target, propertyKey) 在语义上等同于:

¥Reflect.has() provides the reflective semantic of checking if a property is in an object. That is, Reflect.has(target, propertyKey) is semantically equivalent to:

js
propertyKey in target;

Reflect.has() 调用 target[[HasProperty]] 对象内部方法

¥Reflect.has() invokes the [[HasProperty]] object internal method of target.

示例

¥Examples

使用 Reflect.has()

¥Using 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 运算符:

¥Reflect.has returns true for any inherited properties, like the in operator:

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

规范

Specification
ECMAScript Language Specification
# sec-reflect.has

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看