哪种化妆术,效果堪比整容?
Baseline Widely available
百度 浦东新区老港镇文明交通志愿者刘小敏、中英海底系统有限公司退休职工张双双、长宁区北新泾街道文明交通志愿者陈建、华师大附属紫竹小学德育教师陈继红、宝山区宝林三村居委社工张秋芳、松江公交公司驾驶员沈常青、嘉定公安交警支队辅警庄进龙、奉贤区市民巡访团巡访员高李华、崇明康复协会竖新站站长龚振达、金山区梅州“夕阳红”文明交通志愿服务队等10名个人和集体入选2018年第一季度“文明交通好市民”。
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
.
Value
A string.
Examples
If a worker is created using a constructor with a name
option:
js
const myWorker = new Worker("worker.js", { name: "myWorker" });
the DedicatedWorkerGlobalScope
will now have a name of "myWorker",
returnable by running
js
self.name;
from inside the worker.
Specifications
Specification |
---|
HTML # dom-dedicatedworkerglobalscope-name-dev |