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.

Value

Examples

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

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
name
71
18
55
No
58
12.1
71
71
55
50
12.2
10.0

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DedicatedWorkerGlobalScope/name