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
.
var nameObj = self.name;
A DOMString
.
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.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'name' in that specification. | Living Standard |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Support | (Yes) | 55.0 (55.0) | No support | 10.60 | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Support | ? | (Yes) | 55.0 (55.0) | ? | ? | No support |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DedicatedWorkerGlobalScope/name