Reflect.has()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.

Die statische Methode Reflect.has() ist wie der in-Operator, jedoch als Funktion.

Probieren Sie es aus

Syntax

js
Reflect.has(target, propertyKey)

Parameter

target

Das Zielobjekt, in dem nach der Eigenschaft gesucht werden soll.

propertyKey

Der Name der Eigenschaft, die überprüft werden soll.

Rückgabewert

Ein Boolean, der angibt, ob das target die Eigenschaft hat oder nicht.

Ausnahmen

TypeError

Wird ausgelöst, wenn target kein Objekt ist.

Beschreibung

Reflect.has() bietet die reflektierende Semantik einer Überprüfung, ob eine Eigenschaft in einem Objekt vorhanden ist. Das heißt, Reflect.has(target, propertyKey) ist semantisch äquivalent zu:

js
propertyKey in target;

Reflect.has() ruft die [[HasProperty]] interne Objektmethode von target auf.

Beispiele

Verwendung von 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 gibt true für alle geerbten Eigenschaften zurück, ähnlich wie der 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

Spezifikationen

Specification
ECMAScript Language Specification
# sec-reflect.has

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch