This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2019.
Note: This feature is only available in Dedicated Web Workers.
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.
A string.
If a worker is created using a constructor with a name option:
const 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.
| Specification |
|---|
| HTML> # dom-dedicatedworkerglobalscope-name-dev> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
name |
70 | 18 | 55 | 57 | 12.1 | 70 | 55 | 49 | 12.2 | 10.0 | 70 | 12.2 |
© 2005–2025 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