SharedWorkerGlobalScope: name property
The name
read-only property of the
SharedWorkerGlobalScope
interface returns the name that the
SharedWorker
was (optionally) given when it was created. This is the name
that the SharedWorker()
constructor can pass
to get a reference to the SharedWorkerGlobalScope
.
Value
A string.
Examples
If a shared worker is created using a constructor with a name
option:
js
const myWorker = new SharedWorker("worker.js", { name: "mySharedWorker" });
the SharedWorkerGlobalScope
will now have a name of "mySharedWorker",
returnable by running
js
self.name;
from inside the shared worker.
Specifications
Specification |
---|
HTML Standard # dom-sharedworkerglobalscope-name-dev |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
name |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
- See implementation notes.
- Has more compatibility info.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.