WorkerLocation: toString() Methode

Hinweis: Dieses Feature ist nur verfügbar in Web Workers.

Die toString()-Stringifier-Methode eines WorkerLocation-Objekts gibt eine Zeichenkette zurück, die die serialisierte URL für den Standort des Workers enthält. Sie ist ein Synonym für WorkerLocation.href.

Syntax

js
toString()

Parameter

Keine.

Rückgabewert

Keiner (undefined).

Beispiele

js
// In a Web worker, on the page https://developer.mozilla.org/en-US/docs/Web
const result = location.toString(); // Returns 'https://developer.mozilla.org/en-US/docs/Web'

Spezifikationen

Specification
HTML Standard
# workerlocation

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch