SharedWorkerGlobalScope.name
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
.
Syntax
var nameObj = self.name;
Value
A DOMString
.
Example
If a shared worker is created using a constructor with a name
option:
var myWorker = new SharedWorker("worker.js", { name : "mySharedWorker" });
the SharedWorkerGlobalScope
will now have a name of "mySharedWorker", returnable by running
self.name
from inside the shared 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 |
4 |
79 |
55 |
No |
10.6 |
No |
Yes |
40 |
55 |
11 |
No |
4.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/SharedWorkerGlobalScope/name