Symbol.split

Baseline Widely available

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

Die statische Dateneigenschaft Symbol.split repräsentiert das wohlbekannte Symbol Symbol.split. Die Methode String.prototype.split() sucht in ihrem ersten Argument nach diesem Symbol für die Methode, die einen String an den Indizes aufteilt, die mit dem aktuellen Objekt übereinstimmen.

Für weitere Informationen siehe RegExp.prototype[Symbol.split]() und String.prototype.split().

Probieren Sie es aus

Wert

Das wohlbekannte Symbol Symbol.split.

Eigenschaften der Symbol.split-Property
Schreibbar nein
Aufzählbar nein
Konfigurierbar nein

Beispiele

Benutzerdefiniertes umgekehrtes Split

js
class ReverseSplit {
  [Symbol.split](string) {
    const array = string.split(" ");
    return array.reverse();
  }
}

console.log("Another one bites the dust".split(new ReverseSplit()));
// [ "dust", "the", "bites", "one", "Another" ]

Spezifikationen

Specification
ECMAScript Language Specification
# sec-symbol.split

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch