DedicatedWorkerGlobalScope.name

The name read-only property of the DedicatedWorkerGlobalScope interface returns the name that the Worker was (optionally) given when it was created. This is the name that the Worker() constructor can pass to get a reference to the DedicatedWorkerGlobalScope.

Syntax

var nameObj = self.name;

Value

A DOMString.

Example

If a worker is created using a constructor with a name option:

var myWorker = new Worker("worker.js", { name : "myWorker" });

the DedicatedWorkerGlobalScope will now have a name of "myWorker", returnable by running

self.name

from inside the worker.

Specifications

Specification Status Comment
HTML Living Standard
The definition of 'name' in that specification.
Living Standard

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
nameChrome Full support YesEdge Full support ≤79Firefox Full support 55IE No support NoOpera ? Safari No support NoWebView Android Full support YesChrome Android Full support YesFirefox Android Full support 55Opera Android ? Safari iOS No support NoSamsung Internet Android Full support Yes

Legend

Full support
Full support
No support
No support
Compatibility unknown
Compatibility unknown

See also